aboutsummaryrefslogtreecommitdiffstats
path: root/net/atm/atm_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/atm/atm_misc.c')
-rw-r--r--net/atm/atm_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/atm_misc.c b/net/atm/atm_misc.c
index f41f02656ff4..876fbe83e2e4 100644
--- a/net/atm/atm_misc.c
+++ b/net/atm/atm_misc.c
@@ -26,7 +26,7 @@ struct sk_buff *atm_alloc_charge(struct atm_vcc *vcc, int pdu_size,
26 gfp_t gfp_flags) 26 gfp_t gfp_flags)
27{ 27{
28 struct sock *sk = sk_atm(vcc); 28 struct sock *sk = sk_atm(vcc);
29 int guess = atm_guess_pdu2truesize(pdu_size); 29 int guess = SKB_TRUESIZE(pdu_size);
30 30
31 atm_force_charge(vcc, guess); 31 atm_force_charge(vcc, guess);
32 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf) { 32 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf) {