[NET]: Turn nfmark into generic mark
nfmark is being used in various subsystems and has become the defacto mark field for all kinds of packets. Therefore it makes sense to rename it to `mark' and remove the dependency on CONFIG_NETFILTER. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
0afc46c468
commit
82e91ffef6
@@ -143,7 +143,7 @@ next_knode:
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_CLS_U32_MARK
|
||||
if ((skb->nfmark & n->mark.mask) != n->mark.val) {
|
||||
if ((skb->mark & n->mark.mask) != n->mark.val) {
|
||||
n = n->next;
|
||||
goto next_knode;
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user