597515a26c2cac97ebddddbfa88b660e04e0c69e
[bpt/coccinelle.git] / standard.h
1 // ****************************************************************************
2 // Prelude, this file is used with -macro_file_builtins option of the C parser
3 // ****************************************************************************
4
5 /* This file contains:
6 * - macros found in <.h>
7 * - macros found in ".h"
8 * but where we cant detect that it will be a "bad macro"
9 * - hints, cf below.
10 *
11 * A "bad macro" is a macro using free variables or when expanded
12 * that influence the control-flow of the code. In those cases it
13 * is preferable to expand the macro so that the coccinelle engine
14 * has a more accurate representation of what is going on.
15 *
16 *
17 *
18 *
19 * old: this file was also containing what is below but now we
20 * try to expand on demand the macro found in the c file, so those cases
21 * are not needed any more:
22 * - macros found in .c; macros that cannot be parsed.
23 * In the future should be autodetected
24 * (not so easy to do same for macros in .h cos require to access .h file)
25 * - macros found in .c; macros correctly parsed
26 * but where we cant detect that it will be a "bad macro"
27 *
28 * Some of those macros could be deleted and the C code rewritten because
29 * they are "bad" macros.
30 *
31 * todo? perhaps better if could enable/disable some of those expansions
32 * as different software may use conflicting macros.
33 *
34 *
35 * can maybe have a look in sparse/lib.c to see a list of default #define
36 * handled builtin apparently by gcc.
37 */
38
39 // ****************************************************************************
40 // Hints
41 // ****************************************************************************
42
43 /* Cooperation with parsing_hack.ml: some body of macros in this file, such
44 * as MACROSTATEMENT, are considered as magic strings.
45 * I can't just expand those macros into some 'whatever();' because I need
46 * to generate a TMacroStmt for solving some ambiguities in the grammar
47 * for the toplevel stuff I think.
48 * Right now a set of special strings are used as "hints" to the parser
49 * to help it parse code. Those hints are specified in parsing_hack.ml:
50 *
51 * - YACFE_ITERATOR
52 * - YACFE_DECLARATOR
53 * - YACFE_STRING
54 * - YACFE_STATEMENT, or MACROSTATEMENT
55 * - YACFE_ATTRIBUTE
56 * - YACFE_IDENT_BUILDER
57 */
58
59 // ****************************************************************************
60 // Test macros
61 // ****************************************************************************
62
63 // #define FOO(a, OP, b) a OP b
64 // #define FOO(a,b) fn(a,b)
65 #define FOO_METH_TEST(a) YACFE_IDENT_BUILDER
66
67 //#define FOO YACFE_DECLARATOR
68
69 // ****************************************************************************
70 // Generic macros
71 // ****************************************************************************
72
73 // this is defined by windows compiler, and so can not be found via a macro
74 // after a -extract_macros
75 // update: now handled in lexer, simplify stuff
76 //#define __stdcall /*could: YACFE_ATTRIBUTE*/
77 //#define __declspec(a)
78
79 //#define WINAPI
80 //#define CALLBACK
81
82
83 // ****************************************************************************
84 // Linux macros
85 // ****************************************************************************
86
87 // ----------------------------------------------------------------------------
88 // Attributes. could perhaps generalize via "__.*"
89 // ----------------------------------------------------------------------------
90 #define __init
91 #define __exit
92 #define __user
93 #define __iomem
94 #define __initdata
95 #define __exitdata
96 #define __devinit
97 #define __devexit
98 #define __devinitdata
99 #define __cpuinit
100 #define __cpuinitdata
101 #define __init_or_module
102 #define __initdata_or_module
103 #define __pminit
104 #define __pminitdata
105
106 #define __cacheline_aligned
107 #define ____cacheline_aligned
108 #define __cacheline_aligned_in_smp
109 #define ____cacheline_aligned_in_smp
110 #define ____cacheline_internodealigned_in_smp
111
112 #define __ALIGNED__
113 #define __3xp_aligned
114
115 #define __pmac
116 #define __force
117 #define __nocast
118 #define __read_mostly
119
120 #define __must_check
121 // pb
122 #define __unused
123 #define __maybe_unused
124
125
126 #define __attribute_used__
127 #define __attribute_pure__
128 #define __attribute_const__
129 // #define _attribute__const __attribute__((const))
130
131 #define __always_inline
132
133 #define __xipram
134
135 // in the other part of the kernel, in arch/, mm/, etc
136 #define __sched
137 #define __initmv
138 #define __exception
139 #define __cpuexit
140 #define __kprobes
141 #define __meminit
142 #define __meminitdata
143 #define __nosavedata
144 #define __kernel
145 #define __nomods_init
146 #define __apicdebuginit
147 #define __ipc_init
148 #define __modinit
149 #define __lockfunc
150 #define __weak
151 #define __tlb_handler_align
152 #define __lock_aligned
153 #define __force_data
154 #define __nongprelbss
155 #define __nongpreldata
156 #define __noreturn
157
158 #define __section_jiffies
159 #define __vsyscall_fn
160 #define __section_vgetcpu_mode
161 #define __section_vsyscall_gtod_data
162
163 // in header files
164 #define __bitwise
165 #define __bitwise__
166 #define __deprecated
167
168
169 // last found
170 #define __init_refok
171
172
173 // maybe only in old kernel
174 #define __openfirmware
175
176 // now in lexer
177 //#define __extension__
178
179 #define __thread
180 #define __used
181 #define __pure
182
183 #define __ref
184 #define __refdata
185
186 #define __uses_jump_to_uncached
187
188
189 // last last
190 #define __net_init
191 #define __net_exit
192 #define __net_initdata
193
194 #define __paginginit // in mm
195
196 // ----------------------------------------------------------------------------
197 // String macros
198 // ----------------------------------------------------------------------------
199
200 /* string macro. normally handle quite well by mu lalr(k), but
201 * sometimes not enough, if have for instance the XX YY case, could
202 * be considered as a declaration with XX being a typedef, so would
203 * Have ambiguity. So at least by adding this special case, we can
204 * catch more correct string-macro, no more a XX YY but now a good
205 * "XX" YY
206 *
207 * cf include/linux/kernel.h
208 *
209 * For stringification I need to have at least a witness, a string,
210 * and sometimes have just printk(KERN_WARNING MYSTR) and it could
211 * be transformed in a typedef later, so better to at least
212 * transform in string already the string-macro we know.
213 *
214 * Perhaps better to apply also as soon as possible the
215 * correct macro-annotation tagging (__init & co) to be able to
216 * filter them as soon as possible so that they will not polluate
217 * our pattern-matching that come later.
218 */
219
220 #define KERN_EMERG "KERN_EMERG"
221 #define KERN_ALERT "KERN_ALERT"
222 #define KERN_CRIT "KERN_CRIT"
223 #define KERN_ERR "KERN_ERR"
224 #define KERN_WARNING "KERN_WARNING"
225 #define KERN_NOTICE "KERN_NOTICE"
226 #define KERN_INFO "KERN_INFO"
227 #define KERN_DEBUG "KERN_DEBUG"
228
229
230 /* EX_TABLE & co.
231 *
232 * Replaced by a string. We can't put everything as comment
233 * because it can be part of an expression where we wait for
234 * something, where we wait for a string. So at least we
235 * must keep the EX_TABLE token and transform it as a string.
236 *
237 * normally not needed if have good stringification of macro
238 * but those macros are sometimes used multiple times
239 * as in EX_TABLE(0b) EX_TABLE(1b) and we don't detect
240 * it well yet.
241 */
242
243 // TODO don't use x :(
244 #define EX_TABLE(x) "TOTO"
245 #define ASM_EXCEPTIONTABLE_ENTRY(x) "TOTO"
246 #define DCACHE_CLEAR(x) "TOTO"
247 #define PPC405_ERR77(x) "TOTO"
248
249
250
251
252 // ----------------------------------------------------------------------------
253 // Alias keywords
254 // ----------------------------------------------------------------------------
255 // pb, false positive, can also be a #define cst and use as 'case CONST:'
256 //#define CONST const
257
258
259 #define STATIC static
260 #define _static static
261
262 #define noinline
263
264 #define __CS4231_INLINE__ inline
265 #define CCIO_INLINE inline
266 #define SBA_INLINE inline
267
268 #define STATIC_INLINE static inline
269 #define __EXTERN_INLINE extern inline
270
271 #define AGPEXTERN extern
272
273 #define PNMI_STATIC static
274 #define RLMT_STATIC static
275 #define SISINITSTATIC static
276 #define SCTP_STATIC static
277
278 #define BUGLVL if
279 #define IFDEBUG if
280
281 #define TRACE_EXIT return
282
283 #define notrace
284
285 #define noinline_for_stack // in fs
286 #define debug_noinline // in net
287
288 // ----------------------------------------------------------------------------
289 // linkage
290 // ----------------------------------------------------------------------------
291
292 #define fastcall
293 #define asmlinkage
294
295 #define far
296 #define SK_FAR
297
298 // pb
299 //#define near
300
301
302 // ----------------------------------------------------------------------------
303 // ----------------------------------------------------------------------------
304
305 #define INITSECTION
306
307 #define NORET_TYPE
308
309 #define compat_init_data
310
311 #define DIVA_EXIT_FUNCTION
312 #define DIVA_INIT_FUNCTION
313 #define ACPI_SYSTEM_XFACE
314
315 #define ASC_INITDATA
316 #define in2000__INITDATA
317 #define PACKED
318
319 #define WPMINFO
320 #define CPMINFO
321 #define PMINFO
322
323 #define ACPI_INTERNAL_VAR_XFACE
324
325 #define SISIOMEMTYPE
326
327 #define ACPI_STATE_COMMON
328 #define ACPI_PARSE_COMMON
329 #define ACPI_COMMON_DEBUG_MEM_HEADER
330
331
332 #define nabi_no_regargs
333
334
335 #define ATTRIB_NORET
336 #define ATTRIBUTE_UNUSED
337 #define BTEXT
338 #define BTDATA
339 #define PAGE_ALIGNED
340
341 #define EARLY_INIT_SECTION_ATTR
342
343 // pb
344 //#define INIT
345
346 #define IDI_CALL_ENTITY_T
347 #define IDI_CALL_LINK_T
348
349 /* cf gcc-linux.h
350 * A trick to suppress uninitialized variable warning without generating any
351 * code
352 */
353 #define uninitialized_var(x) x = x
354 // as in u16 uninitialized_var(ioboard_type); /* GCC be quiet */
355
356 // ----------------------------------------------------------------------------
357 // ----------------------------------------------------------------------------
358
359 #define __releases(x)
360 #define __acquires(x)
361
362 //now in lexer
363 //#define __declspec(x)
364
365 #define __page_aligned(x)
366 #define __aligned(x)
367 #define __vsyscall(x)
368
369 // ----------------------------------------------------------------------------
370 // ----------------------------------------------------------------------------
371
372
373 //conflict with a macro of firefox
374 //#define FASTCALL(x) x
375 #define PARAMS(x) x
376
377
378
379 // ----------------------------------------------------------------------------
380 // ----------------------------------------------------------------------------
381
382 // include/asm-arm/mach/arch.h
383 // #define MACHINE_START(x) struct foo { x }
384 #define MACHINE_START(_type,_name) \
385 static const struct machine_desc __mach_desc_##_type \
386 /* __used*/ \
387 __attribute__((__section__(".arch.info.init"))) = { \
388 .nr = MACH_TYPE_##_type, \
389 .name = _name,
390
391 #define MACHINE_END \
392 };
393
394 // include/asm-powerpc/machdep.h
395 #define define_machine(name) \
396 extern struct machdep_calls mach_##name; \
397 EXPORT_SYMBOL(mach_##name); \
398 struct machdep_calls mach_##name /*__machine_desc*/ =
399
400
401 // ----------------------------------------------------------------------------
402 // Declare like macros (in structure def), or tricky Declare macros
403 // ----------------------------------------------------------------------------
404
405 // include/asm-i386/pci.h
406 // the DECLARE are detected by parsing_hack but not when they are
407 // inside a struct def.
408 #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME)
409 #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)
410
411 // defined in drivers/infiniband/hw/mthca/mthca_doorbell.h
412 #define MTHCA_DECLARE_DOORBELL_LOCK(doorbell_lock)
413
414 // include/linux/types.h
415 //#define BITS_TO_LONGS(bits) \
416 // (((bits)+BITS_PER_LONG-1)/BITS_PER_LONG)
417 #define DECLARE_BITMAP(name,bits)
418 // /*unsigned*/ long name[BITS_TO_LONGS(bits)]
419
420
421 // include/asm-i386/percpu.h
422 // interesting macro where we see the need of __typeof__(type) with
423 // for example DECLARE_PER_CPU(char[256], iucv_dbf_txt_buf);
424 #define DEFINE_PER_CPU(type, name) \
425 __attribute__((__section__(".data.percpu"))) __typeof__(type) per_cpu__##name
426 #define DECLARE_PER_CPU(type, name) extern __typeof__(type) per_cpu__##name
427
428
429
430 // include/linux/kobject.h
431 #define decl_subsys(_name,_type,_uevent_ops) \
432 struct subsystem _name##_subsys = { \
433 .kset = { \
434 .kobj = { .name = __stringify(_name) }, \
435 .ktype = _type, \
436 .uevent_ops =_uevent_ops, \
437 } \
438 }
439
440 // ----------------------------------------------------------------------------
441 // ----------------------------------------------------------------------------
442
443 // pb: if use this macro then we will not transform the argument of CS_CHECK
444 // in some rules.
445 //#define CS_CHECK(fn, ret) \
446 // do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
447
448
449 // bt2/hci_bcsp.c
450 #define BCSP_CRC_INIT(x) x = 0xffff
451
452
453 // sound/oss/cs46xx_wrapper-24.h
454 #define CS_OWNER .owner =
455 #define CS_THIS_MODULE THIS_MODULE,
456
457
458 // sound/sparc/dbri.c
459 // "bad macro", have a ',' at the end
460 #define CS4215_SINGLE(xname, entry, shift, mask, invert) \
461 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
462 .info = snd_cs4215_info_single, \
463 .get = snd_cs4215_get_single, .put = snd_cs4215_put_single, \
464 .private_value = entry | (shift << 8) | (mask << 16) | (invert << 24) },
465
466 // drivers/media/video/sn9c102/sn9c102_sensor.h
467 //#define sn9c102_write_const_regs(sn9c102_device, data...) \
468 // ({ const static u8 _valreg[][2] = {data}; \
469 // sn9c102_write_regs(sn9c102_device, _valreg, ARRAY_SIZE(_valreg)); })
470
471
472
473
474
475 // drivers/s390/cio/qdio.h
476 #define SYNC_MEMORY if (unlikely(q->siga_sync)) qdio_siga_sync_q(q)
477 #define SYNC_MEMORY_ALL if (unlikely(q->siga_sync)) \
478 qdio_siga_sync(q,~0U,~0U)
479 #define SYNC_MEMORY_ALL_OUTB if (unlikely(q->siga_sync)) \
480 qdio_siga_sync(q,~0U,0)
481
482 // drivers/scsi/g_NCR5380.c
483 #define ANDP ,
484
485
486 // drivers/scsi/ncr53c8xx.c
487 // generate lots of errors because error en cascade car dans l'initialiseur
488 // il y'a des '}' dans la premiere colonne
489 #define PREFETCH_FLUSH SCR_CALL, PADDRH (wait_dma),
490
491 // drivers/net/e100.c
492 // pbs false positive, defined in another manner in some files
493 //#define X(a,b) a,b
494
495
496 // net/ipv4/netfilter/ip_conntrack_helper_h323_asn1.c
497 // also used in other.c that don't do any include :(
498 // but locally redefined in drivers/net/bnx2.c :( with a
499 // #define FNAME 0x8
500 #define FNAME(name) name,
501
502
503 // drivers/net/tulip/de4x5.c
504 #define DESC_ALIGN
505
506
507 // in .h
508 #define MPI_POINTER *
509
510 // mega4/soc.c mega4/socal.c
511 // cause false typedef inference if let soc_printk
512 #define soc_printk printk
513 #define socal_printk printk
514
515
516 // ----------------------------------------------------------------------------
517 // Initializer array macros
518 // ----------------------------------------------------------------------------
519
520 // drivers/net/wireless/bcm43xx/bcm43xx_wx.c
521 // defined in similar way multiple times, in the same file and in another one
522 #define WX(ioctl) [(ioctl) - SIOCSIWCOMMIT]
523 // #define WX(x) [(x)-SIOCIWFIRST]
524
525 // drivers/net/wireless/ipw2200.c
526 #define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT]
527
528 // drivers/net/wireless/zd1211rw/zd_netdev.c
529 #define PRIV_OFFSET(x) [(x)-SIOCIWFIRSTPRIV]
530
531 // drivers/net/wireless/zd1211rw/zd_rf.h
532 #define RF_CHANNEL(ch) [(ch)-1]
533
534 // drivers/net/wireless/zd1211rw/zd_rf_uw2453.c
535 #define RF_CHANPAIR(a,b) [CHAN_TO_PAIRIDX(a)]
536
537 // drivers/net/wireless/arlan-proc.c
538 // incomplete macro, the real macro is quite complex and use other macros
539 #define ARLAN_SYSCTL_TABLE_TOTAL(x)
540
541
542 // ----------------------------------------------------------------------------
543 // ----------------------------------------------------------------------------
544
545 // drivers/net/cxgb3/t3_hw.c
546 #define VPD_ENTRY(name, len) \
547 u8 name##_kword[2]; u8 name##_len; u8 name##_data[len]
548
549
550 // #define rtrc(i) {}
551
552 // ----------------------------------------------------------------------------
553 // ----------------------------------------------------------------------------
554
555 // drivers/video/nvidia/nv_type.h
556 // use: SetBitField(h_blank_e, 5: 5, 7:7)
557 //#define BITMASK(t,b) (((unsigned)(1U << (((t)-(b)+1)))-1) << (b))
558 //#define MASKEXPAND(mask) BITMASK(1?mask,0?mask)
559 //#define SetBF(mask,value) ((value) << (0?mask))
560 //#define GetBF(var,mask) (((unsigned)((var) & MASKEXPAND(mask))) >> (0?mask) )
561 //#define SetBitField(value,from,to) SetBF(to, GetBF(value,from))
562 //#define SetBit(n) (1<<(n))
563 //#define Set8Bits(value) ((value)&0xff)
564
565
566 // drivers/video/sis/init.c
567 // use: GETBITSTR((SiS_Pr->CVTotal -2), 10:10, 0:0)
568 //#define BITMASK(h,l) (((unsigned)(1U << ((h)-(l)+1))-1)<<(l))
569 //#define GENMASK(mask) BITMASK(1?mask,0?mask)
570 //#define GETBITS(var,mask) (((var) & GENMASK(mask)) >> (0?mask))
571 //#define GETBITSTR(val,from,to) ((GETBITS(val,from)) << (0?to))
572
573
574 // fs/afs/internal.h
575 #define ASSERTCMP(X, OP, Y) \
576 do { \
577 if (unlikely(!((X) OP (Y)))) { \
578 printk(KERN_ERR "\n"); \
579 printk(KERN_ERR "AFS: Assertion failed\n"); \
580 printk(KERN_ERR "%lu " /*#OP*/ " %lu is false\n", \
581 (unsigned long)(X), (unsigned long)(Y)); \
582 printk(KERN_ERR "0x%lx " /*#OP*/ " 0x%lx is false\n", \
583 (unsigned long)(X), (unsigned long)(Y)); \
584 BUG(); \
585 } \
586 } while(0)
587
588 #define ASSERTIFCMP(C, X, OP, Y) \
589 do { \
590 if (unlikely((C) && !((X) OP (Y)))) { \
591 printk(KERN_ERR "\n"); \
592 printk(KERN_ERR "AFS: Assertion failed\n"); \
593 printk(KERN_ERR "%lu " /*#OP*/ " %lu is false\n", \
594 (unsigned long)(X), (unsigned long)(Y)); \
595 printk(KERN_ERR "0x%lx " /*#OP*/ " 0x%lx is false\n", \
596 (unsigned long)(X), (unsigned long)(Y)); \
597 BUG(); \
598 } \
599 } while(0)
600
601
602 #define ASSERTRANGE(L, OP1, N, OP2, H) \
603 do { \
604 if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
605 printk(KERN_ERR "\n"); \
606 printk(KERN_ERR "AFS: Assertion failed\n"); \
607 printk(KERN_ERR "%lu "/*#OP1*/" %lu "/*#OP2*/" %lu is false\n", \
608 (unsigned long)(L), (unsigned long)(N), \
609 (unsigned long)(H)); \
610 printk(KERN_ERR "0x%lx "/*#OP1*/" 0x%lx "/*#OP2*/" 0x%lx is false\n", \
611 (unsigned long)(L), (unsigned long)(N), \
612 (unsigned long)(H)); \
613 BUG(); \
614 } \
615 } while(0)
616
617
618
619
620 // loop, macro without ';', single macro. ex: DEBUG()
621
622 // TODO should find the definition because we don't use 'x' and so
623 // may lose code sites with coccinelle. If expand correctly, will
624 // still don't transform correctly but at least will detect the place.
625
626
627
628
629 #define ASSERT(x) MACROSTATEMENT
630 #define IRDA_ASSERT(x) MACROSTATEMENT
631
632 #define CHECK_NULL(x) MACROSTATEMENT
633
634 //#define DEBUG(x) MACROSTATEMENT
635 #define DEBUG0(x) MACROSTATEMENT
636 #define DEBUG1(x) MACROSTATEMENT
637 #define DEBUG2(x) MACROSTATEMENT
638 #define DEBUG3(x) MACROSTATEMENT
639
640
641 #define DBG(x) MACROSTATEMENT
642 #define DEB(x) MACROSTATEMENT
643 #define PARSEDEBUG(x) MACROSTATEMENT
644 #define DEBC(x) MACROSTATEMENT
645 #define DBG_TRC(x) MACROSTATEMENT
646 #define DBG_ERR(x) MACROSTATEMENT
647 #define DBG_FTL(x) MACROSTATEMENT
648
649 #define DBGINFO(x) MACROSTATEMENT
650 #define DFLOW(x) MACROSTATEMENT
651 #define DFLIP(x) MACROSTATEMENT
652 #define DLOG_INT_TRIG(x) MACROSTATEMENT
653
654 #define D3(x) MACROSTATEMENT
655 #define D1(x) MACROSTATEMENT
656 #define DB(x) MACROSTATEMENT
657 #define DCBDEBUG(x) MACROSTATEMENT
658 #define SCSI_LOG_MLQUEUE(x) MACROSTATEMENT
659
660 #define PLND(x) MACROSTATEMENT
661 #define FCALND(x) MACROSTATEMENT
662 #define FCALD(x) MACROSTATEMENT
663
664 #define DEBUGRECURSION(x) MACROSTATEMENT
665
666 #define DEBUGPIO(x) MACROSTATEMENT
667 #define VDEB(x) MACROSTATEMENT
668
669 #define READ_UNLOCK_IRQRESTORE(x) MACROSTATEMENT
670
671 #define TRACE_CATCH(x) MACROSTATEMENT
672
673 #define PDBGG(x) MACROSTATEMENT
674
675 #define IF_ABR(x) MACROSTATEMENT
676 #define IF_EVENT(x) MACROSTATEMENT
677 #define IF_ERR(x) MACROSTATEMENT
678 #define IF_CBR(x) MACROSTATEMENT
679 #define IF_INIT(x) MACROSTATEMENT
680 #define IF_RX(x) MACROSTATEMENT
681
682 #define SOD(x) MACROSTATEMENT
683
684 #define KDBG(x) MACROSTATEMENT
685
686 #define IRDA_ASSERT_LABEL(x) MACROSTATEMENT
687
688
689
690
691
692 // ----------------------------------------------------------------------------
693 // Difficult foreach
694 // ----------------------------------------------------------------------------
695
696 // include/linux/sched.h
697 #define while_each_thread(g, t) \
698 while ((t = next_thread(t)) != g)
699
700
701
702 // net/decnet/dn_fib.c
703 #define for_fib_info() { struct dn_fib_info *fi;\
704 for(fi = dn_fib_info_list; fi; fi = fi->fib_next)
705 #define endfor_fib_info() }
706
707 #define for_nexthops(fi) { int nhsel; const struct dn_fib_nh *nh;\
708 for(nhsel = 0, nh = (fi)->fib_nh; nhsel < (fi)->fib_nhs; nh++, nhsel++)
709
710 #define change_nexthops(fi) { int nhsel; struct dn_fib_nh *nh;\
711 for(nhsel = 0, nh = (struct dn_fib_nh *)((fi)->fib_nh); nhsel < (fi)->fib_nhs; nh++, nhsel++)
712
713 #define endfor_nexthops(fi) }
714
715
716 // ----------------------------------------------------------------------------
717 // Macros around function prototype
718 // ----------------------------------------------------------------------------
719
720
721 // net/sched/em_meta.c
722 #define META_COLLECTOR(FUNC) static void meta_##FUNC(struct sk_buff *skb, \
723 struct tcf_pkt_info *info, struct meta_value *v, \
724 struct meta_obj *dst, int *err)
725
726
727 #define GDTH_INITFUNC(x,y) x y
728 #define ASC_INITFUNC(x,y) x y
729
730
731 // ----------------------------------------------------------------------------
732 // If-like macros
733 // ----------------------------------------------------------------------------
734
735 // include/linux/lockd/debug.h
736 // include/linux/nfs_fs.h
737 // include/linux/nfsd/debug.h
738 // include/linux/sunrpc/debug.h
739 //#define ifdebug(flag) if (unlikely(nlm_debug & NLMDBG_##flag))
740 #define ifdebug(flag) if (0)
741
742
743
744 // ----------------------------------------------------------------------------
745 //#define __PROM_O32
746
747 // ----------------------------------------------------------------------------
748 // for tests-big/ macros, may be obsolete now cos fixed in latest kernel
749 // ----------------------------------------------------------------------------
750
751 // rule10
752 //#define ACPI_MODULE_NAME(x)