Blame view

net/atm/atm_misc.c 2.61 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
  /* net/atm/atm_misc.c - Various functions for use by ATM drivers */
  
  /* Written 1995-2000 by Werner Almesberger, EPFL ICA */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
6
7
8
9
10
  #include <linux/module.h>
  #include <linux/atm.h>
  #include <linux/atmdev.h>
  #include <linux/skbuff.h>
  #include <linux/sonet.h>
  #include <linux/bitops.h>
3356b4d41   Joe Perches   net/atm/atm_misc....
11
  #include <linux/errno.h>
60063497a   Arun Sharma   atomic: use <linu...
12
  #include <linux/atomic.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13

3356b4d41   Joe Perches   net/atm/atm_misc....
14
  int atm_charge(struct atm_vcc *vcc, int truesize)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  {
3356b4d41   Joe Perches   net/atm/atm_misc....
16
  	atm_force_charge(vcc, truesize);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
  	if (atomic_read(&sk_atm(vcc)->sk_rmem_alloc) <= sk_atm(vcc)->sk_rcvbuf)
  		return 1;
3356b4d41   Joe Perches   net/atm/atm_misc....
19
  	atm_return(vcc, truesize);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
21
22
  	atomic_inc(&vcc->stats->rx_drop);
  	return 0;
  }
3356b4d41   Joe Perches   net/atm/atm_misc....
23
  EXPORT_SYMBOL(atm_charge);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24

3356b4d41   Joe Perches   net/atm/atm_misc....
25
26
  struct sk_buff *atm_alloc_charge(struct atm_vcc *vcc, int pdu_size,
  				 gfp_t gfp_flags)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
  {
  	struct sock *sk = sk_atm(vcc);
49f5ed425   chas williams - CONTRACTOR   atm: eliminate at...
29
  	int guess = SKB_TRUESIZE(pdu_size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30

3356b4d41   Joe Perches   net/atm/atm_misc....
31
  	atm_force_charge(vcc, guess);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
  	if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf) {
3356b4d41   Joe Perches   net/atm/atm_misc....
33
  		struct sk_buff *skb = alloc_skb(pdu_size, gfp_flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
35
36
37
38
39
40
  
  		if (skb) {
  			atomic_add(skb->truesize-guess,
  				   &sk->sk_rmem_alloc);
  			return skb;
  		}
  	}
3356b4d41   Joe Perches   net/atm/atm_misc....
41
  	atm_return(vcc, guess);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
  	atomic_inc(&vcc->stats->rx_drop);
  	return NULL;
  }
3356b4d41   Joe Perches   net/atm/atm_misc....
45
  EXPORT_SYMBOL(atm_alloc_charge);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  
  
  /*
   * atm_pcr_goal returns the positive PCR if it should be rounded up, the
   * negative PCR if it should be rounded down, and zero if the maximum available
   * bandwidth should be used.
   *
   * The rules are as follows (* = maximum, - = absent (0), x = value "x",
   * (x+ = x or next value above x, x- = x or next value below):
   *
   *	min max pcr	result		min max pcr	result
   *	-   -   -	* (UBR only)	x   -   -	x+
   *	-   -   *	*		x   -   *	*
   *	-   -   z	z-		x   -   z	z-
   *	-   *   -	*		x   *   -	x+
   *	-   *   *	*		x   *   *	*
   *	-   *   z	z-		x   *   z	z-
   *	-   y   -	y-		x   y   -	x+
   *	-   y   *	y-		x   y   *	y-
   *	-   y   z	z-		x   y   z	z-
   *
   * All non-error cases can be converted with the following simple set of rules:
   *
   *   if pcr == z then z-
   *   else if min == x && pcr == - then x+
   *     else if max == y then y-
   *	 else *
   */
c219750b2   Mitchell Blank Jr   [ATM]: atm_pcr_go...
74
  int atm_pcr_goal(const struct atm_trafprm *tp)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
  {
c219750b2   Mitchell Blank Jr   [ATM]: atm_pcr_go...
76
77
78
79
80
81
  	if (tp->pcr && tp->pcr != ATM_MAX_PCR)
  		return -tp->pcr;
  	if (tp->min_pcr && !tp->pcr)
  		return tp->min_pcr;
  	if (tp->max_pcr != ATM_MAX_PCR)
  		return -tp->max_pcr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
  	return 0;
  }
3356b4d41   Joe Perches   net/atm/atm_misc....
84
  EXPORT_SYMBOL(atm_pcr_goal);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85

3356b4d41   Joe Perches   net/atm/atm_misc....
86
  void sonet_copy_stats(struct k_sonet_stats *from, struct sonet_stats *to)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
88
89
90
91
  {
  #define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
  	__SONET_ITEMS
  #undef __HANDLE_ITEM
  }
3356b4d41   Joe Perches   net/atm/atm_misc....
92
  EXPORT_SYMBOL(sonet_copy_stats);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93

3356b4d41   Joe Perches   net/atm/atm_misc....
94
  void sonet_subtract_stats(struct k_sonet_stats *from, struct sonet_stats *to)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
  {
3356b4d41   Joe Perches   net/atm/atm_misc....
96
  #define __HANDLE_ITEM(i) atomic_sub(to->i, &from->i)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97
98
99
  	__SONET_ITEMS
  #undef __HANDLE_ITEM
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100
  EXPORT_SYMBOL(sonet_subtract_stats);