diff options
author | Jorge Boncompte [DTI2] <jorge@dti2.net> | 2011-11-21 10:25:57 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-22 16:15:42 -0500 |
commit | 4e55f5785825f18b1eb6c5cc5a9717e276925805 (patch) | |
tree | 31a7c44400e598e82e1de0a7326952d00b28767d /net/atm/common.h | |
parent | 3b829366cc6d0adeb4df2c2d917926f6b41c573d (diff) | |
download | linux-stable-4e55f5785825f18b1eb6c5cc5a9717e276925805.tar.gz linux-stable-4e55f5785825f18b1eb6c5cc5a9717e276925805.tar.bz2 linux-stable-4e55f5785825f18b1eb6c5cc5a9717e276925805.zip |
atm: Introduce vcc_process_recv_queue
This function moves the implementation found in the clip and br2684
modules to common code, correctly unlinks the skb from the queue
before pushing it and makes pppoatm use it.
Signed-off-by: Jorge Boncompte [DTI2] <jorge@dti2.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/common.h')
-rw-r--r-- | net/atm/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/atm/common.h b/net/atm/common.h index f48a76b6cdf4..cc3c2dae4d79 100644 --- a/net/atm/common.h +++ b/net/atm/common.h @@ -24,6 +24,7 @@ int vcc_setsockopt(struct socket *sock, int level, int optname, char __user *optval, unsigned int optlen); int vcc_getsockopt(struct socket *sock, int level, int optname, char __user *optval, int __user *optlen); +void vcc_process_recv_queue(struct atm_vcc *vcc); int atmpvc_init(void); void atmpvc_exit(void); |