This commit was manufactured by cvs2svn to create branch
[linux-2.6.git] / net / core / netfilter.c
index 58632d1..e5e32b0 100644 (file)
@@ -204,6 +204,9 @@ void nf_dump_skb(int pf, struct sk_buff *skb)
 
                for (opti = 0; opti < (ip->ihl - sizeof(struct iphdr) / 4); opti++)
                        printk(" O=0x%8.8X", *opt++);
+               printk(" MARK=%lu (0x%lu)",
+                      (long unsigned int)skb->nfmark,
+                      (long unsigned int)skb->nfmark);
                printk("\n");
        }
        }
@@ -831,3 +834,6 @@ EXPORT_SYMBOL(nf_setsockopt);
 EXPORT_SYMBOL(nf_unregister_hook);
 EXPORT_SYMBOL(nf_unregister_queue_handler);
 EXPORT_SYMBOL(nf_unregister_sockopt);
+#ifdef CONFIG_NETFILTER_DEBUG
+EXPORT_SYMBOL(nf_dump_skb);
+#endif