View | Details | Raw Unified | Return to bug 214624 | Differences between
and this patch

Collapse All | Expand All

(-)sys/netgraph/netgraph.h (-5 / +14 lines)
Lines 71-81 Link Here
71
 * modules.
71
 * modules.
72
 */
72
 */
73
#define _NG_ABI_VERSION 12
73
#define _NG_ABI_VERSION 12
74
#ifdef	NETGRAPH_DEBUG /*----------------------------------------------*/
74
75
#define NG_ABI_VERSION	(_NG_ABI_VERSION + 0x10000)
75
#ifdef	NETGRAPH_DEBUG
76
#else	/* NETGRAPH_DEBUG */ /*----------------------------------------------*/
76
#define	_NG_ABI_PREFIX1 0x10000
77
#define NG_ABI_VERSION	_NG_ABI_VERSION
77
#else
78
#endif	/* NETGRAPH_DEBUG */ /*----------------------------------------------*/
78
#define	_NG_ABI_PREFIX1 0
79
#endif
80
81
#ifdef	INVARIANTS
82
#define	_NG_ABI_PREFIX2 0x20000
83
#else
84
#define	_NG_ABI_PREFIX2 0
85
#endif
86
87
#define NG_ABI_VERSION	(_NG_ABI_PREFIX1 + _NG_ABI_PREFIX2 + _NG_ABI_VERSION)
79
88
80
89
81
/*
90
/*

Return to bug 214624