~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/atm/raw.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/atm/raw.c (Version linux-6.12-rc7) and /net/atm/raw.c (Version ccs-tools-1.8.9)


** Warning: Cannot open xref database.

  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /* net/atm/raw.c - Raw AAL0 and AAL5 transport    
  3                                                   
  4 /* Written 1995-2000 by Werner Almesberger, EP    
  5                                                   
  6 #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt    
  7                                                   
  8 #include <linux/module.h>                         
  9 #include <linux/atmdev.h>                         
 10 #include <linux/capability.h>                     
 11 #include <linux/kernel.h>                         
 12 #include <linux/skbuff.h>                         
 13 #include <linux/mm.h>                             
 14 #include <linux/slab.h>                           
 15                                                   
 16 #include "common.h"                               
 17 #include "protocols.h"                            
 18                                                   
 19 /*                                                
 20  * SKB == NULL indicates that the link is bein    
 21  */                                               
 22                                                   
 23 static void atm_push_raw(struct atm_vcc *vcc,     
 24 {                                                 
 25         if (skb) {                                
 26                 struct sock *sk = sk_atm(vcc);    
 27                                                   
 28                 skb_queue_tail(&sk->sk_receive    
 29                 sk->sk_data_ready(sk);            
 30         }                                         
 31 }                                                 
 32                                                   
 33 static void atm_pop_raw(struct atm_vcc *vcc, s    
 34 {                                                 
 35         struct sock *sk = sk_atm(vcc);            
 36                                                   
 37         pr_debug("(%d) %d -= %d\n",               
 38                  vcc->vci, sk_wmem_alloc_get(s    
 39         WARN_ON(refcount_sub_and_test(ATM_SKB(    
 40         dev_kfree_skb_any(skb);                   
 41         sk->sk_write_space(sk);                   
 42 }                                                 
 43                                                   
 44 static int atm_send_aal0(struct atm_vcc *vcc,     
 45 {                                                 
 46         /*                                        
 47          * Note that if vpi/vci are _ANY or _U    
 48          * still work                             
 49          */                                       
 50         if (!capable(CAP_NET_ADMIN) &&            
 51             (((u32 *)skb->data)[0] & (ATM_HDR_    
 52             ((vcc->vpi << ATM_HDR_VPI_SHIFT) |    
 53              (vcc->vci << ATM_HDR_VCI_SHIFT)))    
 54                 kfree_skb(skb);                   
 55                 return -EADDRNOTAVAIL;            
 56         }                                         
 57         if (vcc->dev->ops->send_bh)               
 58                 return vcc->dev->ops->send_bh(    
 59         return vcc->dev->ops->send(vcc, skb);     
 60 }                                                 
 61                                                   
 62 int atm_init_aal0(struct atm_vcc *vcc)            
 63 {                                                 
 64         vcc->push = atm_push_raw;                 
 65         vcc->pop = atm_pop_raw;                   
 66         vcc->push_oam = NULL;                     
 67         vcc->send = atm_send_aal0;                
 68         return 0;                                 
 69 }                                                 
 70                                                   
 71 int atm_init_aal34(struct atm_vcc *vcc)           
 72 {                                                 
 73         vcc->push = atm_push_raw;                 
 74         vcc->pop = atm_pop_raw;                   
 75         vcc->push_oam = NULL;                     
 76         if (vcc->dev->ops->send_bh)               
 77                 vcc->send = vcc->dev->ops->sen    
 78         else                                      
 79                 vcc->send = vcc->dev->ops->sen    
 80         return 0;                                 
 81 }                                                 
 82                                                   
 83 int atm_init_aal5(struct atm_vcc *vcc)            
 84 {                                                 
 85         vcc->push = atm_push_raw;                 
 86         vcc->pop = atm_pop_raw;                   
 87         vcc->push_oam = NULL;                     
 88         if (vcc->dev->ops->send_bh)               
 89                 vcc->send = vcc->dev->ops->sen    
 90         else                                      
 91                 vcc->send = vcc->dev->ops->sen    
 92         return 0;                                 
 93 }                                                 
 94 EXPORT_SYMBOL(atm_init_aal5);                     
 95                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php