1 // SPDX-License-Identifier: GPL-2.0
2 /* net/atm/atm_misc.c - Various functions for use by ATM drivers */
4 /* Written 1995-2000 by Werner Almesberger, EPFL ICA */
6 #include <linux/module.h>
8 #include <linux/atmdev.h>
9 #include <linux/skbuff.h>
10 #include <linux/sonet.h>
11 #include <linux/bitops.h>
12 #include <linux/errno.h>
13 #include <linux/atomic.h>
15 int atm_charge(struct atm_vcc
*vcc
, int truesize
)
17 atm_force_charge(vcc
, truesize
);
18 if (atomic_read(&sk_atm(vcc
)->sk_rmem_alloc
) <= sk_atm(vcc
)->sk_rcvbuf
)
20 atm_return(vcc
, truesize
);
21 atomic_inc(&vcc
->stats
->rx_drop
);
24 EXPORT_SYMBOL(atm_charge
);
26 struct sk_buff
*atm_alloc_charge(struct atm_vcc
*vcc
, int pdu_size
,
29 struct sock
*sk
= sk_atm(vcc
);
30 int guess
= SKB_TRUESIZE(pdu_size
);
32 atm_force_charge(vcc
, guess
);
33 if (atomic_read(&sk
->sk_rmem_alloc
) <= sk
->sk_rcvbuf
) {
34 struct sk_buff
*skb
= alloc_skb(pdu_size
, gfp_flags
);
37 atomic_add(skb
->truesize
-guess
,
42 atm_return(vcc
, guess
);
43 atomic_inc(&vcc
->stats
->rx_drop
);
46 EXPORT_SYMBOL(atm_alloc_charge
);
50 * atm_pcr_goal returns the positive PCR if it should be rounded up, the
51 * negative PCR if it should be rounded down, and zero if the maximum available
52 * bandwidth should be used.
54 * The rules are as follows (* = maximum, - = absent (0), x = value "x",
55 * (x+ = x or next value above x, x- = x or next value below):
57 * min max pcr result min max pcr result
58 * - - - * (UBR only) x - - x+
68 * All non-error cases can be converted with the following simple set of rules:
71 * else if min == x && pcr == - then x+
72 * else if max == y then y-
76 int atm_pcr_goal(const struct atm_trafprm
*tp
)
78 if (tp
->pcr
&& tp
->pcr
!= ATM_MAX_PCR
)
80 if (tp
->min_pcr
&& !tp
->pcr
)
82 if (tp
->max_pcr
!= ATM_MAX_PCR
)
86 EXPORT_SYMBOL(atm_pcr_goal
);
88 void sonet_copy_stats(struct k_sonet_stats
*from
, struct sonet_stats
*to
)
90 #define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
94 EXPORT_SYMBOL(sonet_copy_stats
);
96 void sonet_subtract_stats(struct k_sonet_stats
*from
, struct sonet_stats
*to
)
98 #define __HANDLE_ITEM(i) atomic_sub(to->i, &from->i)
102 EXPORT_SYMBOL(sonet_subtract_stats
);