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

TOMOYO Linux Cross Reference
Linux/net/caif/cfdgml.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/caif/cfdgml.c (Version linux-6.12-rc7) and /net/caif/cfdgml.c (Version policy-sample)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  * Copyright (C) ST-Ericsson AB 2010              
  4  * Author:      Sjur Brendeland                   
  5  */                                               
  6                                                   
  7 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " f    
  8                                                   
  9 #include <linux/stddef.h>                         
 10 #include <linux/spinlock.h>                       
 11 #include <linux/slab.h>                           
 12 #include <net/caif/caif_layer.h>                  
 13 #include <net/caif/cfsrvl.h>                      
 14 #include <net/caif/cfpkt.h>                       
 15                                                   
 16                                                   
 17 #define container_obj(layr) ((struct cfsrvl *)    
 18                                                   
 19 #define DGM_CMD_BIT  0x80                         
 20 #define DGM_FLOW_OFF 0x81                         
 21 #define DGM_FLOW_ON  0x80                         
 22 #define DGM_MTU 1500                              
 23                                                   
 24 static int cfdgml_receive(struct cflayer *layr    
 25 static int cfdgml_transmit(struct cflayer *lay    
 26                                                   
 27 struct cflayer *cfdgml_create(u8 channel_id, s    
 28 {                                                 
 29         struct cfsrvl *dgm = kzalloc(sizeof(st    
 30         if (!dgm)                                 
 31                 return NULL;                      
 32         caif_assert(offsetof(struct cfsrvl, la    
 33         cfsrvl_init(dgm, channel_id, dev_info,    
 34         dgm->layer.receive = cfdgml_receive;      
 35         dgm->layer.transmit = cfdgml_transmit;    
 36         snprintf(dgm->layer.name, CAIF_LAYER_N    
 37         return &dgm->layer;                       
 38 }                                                 
 39                                                   
 40 static int cfdgml_receive(struct cflayer *layr    
 41 {                                                 
 42         u8 cmd = -1;                              
 43         u8 dgmhdr[3];                             
 44         int ret;                                  
 45         caif_assert(layr->up != NULL);            
 46         caif_assert(layr->receive != NULL);       
 47         caif_assert(layr->ctrlcmd != NULL);       
 48                                                   
 49         if (cfpkt_extr_head(pkt, &cmd, 1) < 0)    
 50                 pr_err("Packet is erroneous!\n    
 51                 cfpkt_destroy(pkt);               
 52                 return -EPROTO;                   
 53         }                                         
 54                                                   
 55         if ((cmd & DGM_CMD_BIT) == 0) {           
 56                 if (cfpkt_extr_head(pkt, &dgmh    
 57                         pr_err("Packet is erro    
 58                         cfpkt_destroy(pkt);       
 59                         return -EPROTO;           
 60                 }                                 
 61                 ret = layr->up->receive(layr->    
 62                 return ret;                       
 63         }                                         
 64                                                   
 65         switch (cmd) {                            
 66         case DGM_FLOW_OFF:      /* FLOW OFF */    
 67                 layr->ctrlcmd(layr, CAIF_CTRLC    
 68                 cfpkt_destroy(pkt);               
 69                 return 0;                         
 70         case DGM_FLOW_ON:       /* FLOW ON */     
 71                 layr->ctrlcmd(layr, CAIF_CTRLC    
 72                 cfpkt_destroy(pkt);               
 73                 return 0;                         
 74         default:                                  
 75                 cfpkt_destroy(pkt);               
 76                 pr_info("Unknown datagram cont    
 77                 return -EPROTO;                   
 78         }                                         
 79 }                                                 
 80                                                   
 81 static int cfdgml_transmit(struct cflayer *lay    
 82 {                                                 
 83         u8 packet_type;                           
 84         u32 zero = 0;                             
 85         struct caif_payload_info *info;           
 86         struct cfsrvl *service = container_obj    
 87         int ret;                                  
 88                                                   
 89         if (!cfsrvl_ready(service, &ret)) {       
 90                 cfpkt_destroy(pkt);               
 91                 return ret;                       
 92         }                                         
 93                                                   
 94         /* STE Modem cannot handle more than 1    
 95         if (cfpkt_getlen(pkt) > DGM_MTU) {        
 96                 cfpkt_destroy(pkt);               
 97                 return -EMSGSIZE;                 
 98         }                                         
 99                                                   
100         cfpkt_add_head(pkt, &zero, 3);            
101         packet_type = 0x08; /* B9 set - UNCLAS    
102         cfpkt_add_head(pkt, &packet_type, 1);     
103                                                   
104         /* Add info for MUX-layer to route the    
105         info = cfpkt_info(pkt);                   
106         info->channel_id = service->layer.id;     
107         /* To optimize alignment, we add up th    
108          * before payload.                        
109          */                                       
110         info->hdr_len = 4;                        
111         info->dev_info = &service->dev_info;      
112         return layr->dn->transmit(layr->dn, pk    
113 }                                                 
114                                                   

~ [ 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