diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-10-01 08:12:28 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-10-01 08:12:28 +0000 |
commit | 24bad8ed028a8e075283c62d935dd0ec1344063e (patch) | |
tree | 61afd310286ad1bba9bb1b4e09ad4718393f8e21 /packages/ixp425-eth/ixp425-eth-1.2/2.6.14.patch | |
parent | 68c437628f2d561c87e6dfe2cdf07bd7bca44cd2 (diff) |
ixp intel drivers: ixp4xx v1.5 ixp425-eth v1.2
Diffstat (limited to 'packages/ixp425-eth/ixp425-eth-1.2/2.6.14.patch')
-rw-r--r-- | packages/ixp425-eth/ixp425-eth-1.2/2.6.14.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/ixp425-eth/ixp425-eth-1.2/2.6.14.patch b/packages/ixp425-eth/ixp425-eth-1.2/2.6.14.patch new file mode 100644 index 0000000000..57f441c5bc --- /dev/null +++ b/packages/ixp425-eth/ixp425-eth-1.2/2.6.14.patch @@ -0,0 +1,24 @@ +--- ./ixp425_eth.c 2005-10-01 00:50:45.179775259 -0700 ++++ ./ixp425_eth.c 2005-10-01 00:54:10.976725245 -0700 +@@ -777,7 +777,9 @@ + * before re-using it on the Rx-path + */ + skb->nfmark = 0; ++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,14) + skb->nfcache = 0; ++#endif + nf_conntrack_put(skb->nfct); + skb->nfct = NULL; + #ifdef CONFIG_NETFILTER_DEBUG +@@ -1451,7 +1453,11 @@ + skb->len -= header_len; + + /* fill the pkt arrival time (set at the irq callback entry) */ ++#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,14) + skb->stamp = irq_stamp; ++#else ++ skb_set_timestamp(skb, &irq_stamp); ++#endif + + /* fill the input device field */ + skb->dev = dev; |