diff options
| author | 2005-08-09 19:22:01 -0700 | |
|---|---|---|
| committer | 2005-08-29 15:29:31 -0700 | |
| commit | bf3a46aa9b96f6eb3a49a568f72a2801c3e830c0 (patch) | |
| tree | 4387ee7d8ef83348338a9d433c93139a4747dcb5 /include/linux/skbuff.h | |
| parent | Merge refs/heads/upstream from master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev (diff) | |
| download | linux-dev-bf3a46aa9b96f6eb3a49a568f72a2801c3e830c0.tar.xz linux-dev-bf3a46aa9b96f6eb3a49a568f72a2801c3e830c0.zip | |
[NETFILTER]: convert nfmark and conntrack mark to 32bit
As discussed at netconf'05, we convert nfmark and conntrack-mark to be
32bits even on 64bit architectures.
Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
| -rw-r--r-- | include/linux/skbuff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 948527e42a60..2e40f4c9f7a6 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -259,7 +259,7 @@ struct sk_buff { void (*destructor)(struct sk_buff *skb); #ifdef CONFIG_NETFILTER - unsigned long nfmark; + __u32 nfmark; __u32 nfcache; __u32 nfctinfo; struct nf_conntrack *nfct; |
