diff options
author | David S. Miller <davem@davemloft.net> | 2009-11-15 22:23:47 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-18 13:43:54 -0800 |
commit | f9e03b95ee4186dcaabea36d6d285ee99d8f2db4 (patch) | |
tree | 233d7e3ffecd6e5bc10dbb67baa1f045428dfc77 /include | |
parent | b1589c33ceab093fc7b5cb21b5116bc15965b081 (diff) |
Revert "isdn: isdn_ppp: Use SKB list facilities instead of home-grown implementation."
[ Upstream commit e29d4363174949a7a4e46f670993d7ff43342c1c ]
This reverts commit 38783e671399b5405f1fd177d602c400a9577ae6.
It causes kernel bugzilla #14594
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/isdn_ppp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/isdn_ppp.h b/include/linux/isdn_ppp.h index 4c218ee7587a..8687a7dc0632 100644 --- a/include/linux/isdn_ppp.h +++ b/include/linux/isdn_ppp.h @@ -157,7 +157,7 @@ typedef struct { typedef struct { int mp_mrru; /* unused */ - struct sk_buff_head frags; /* fragments sl list */ + struct sk_buff * frags; /* fragments sl list -- use skb->next */ long frames; /* number of frames in the frame list */ unsigned int seq; /* last processed packet seq #: any packets * with smaller seq # will be dropped |