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

TOMOYO Linux Cross Reference
Linux/net/openvswitch/vport-gre.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/openvswitch/vport-gre.c (Version linux-6.11.5) and /net/openvswitch/vport-gre.c (Version linux-4.19.319)


** Warning: Cannot open xref database.

  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  * Copyright (c) 2007-2014 Nicira, Inc.           
  4  */                                               
  5                                                   
  6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt       
  7                                                   
  8 #include <linux/if.h>                             
  9 #include <linux/skbuff.h>                         
 10 #include <linux/ip.h>                             
 11 #include <linux/if_tunnel.h>                      
 12 #include <linux/if_vlan.h>                        
 13 #include <linux/in.h>                             
 14 #include <linux/in_route.h>                       
 15 #include <linux/inetdevice.h>                     
 16 #include <linux/jhash.h>                          
 17 #include <linux/list.h>                           
 18 #include <linux/kernel.h>                         
 19 #include <linux/module.h>                         
 20 #include <linux/workqueue.h>                      
 21 #include <linux/rculist.h>                        
 22 #include <net/route.h>                            
 23 #include <net/xfrm.h>                             
 24                                                   
 25 #include <net/icmp.h>                             
 26 #include <net/ip.h>                               
 27 #include <net/ip_tunnels.h>                       
 28 #include <net/gre.h>                              
 29 #include <net/net_namespace.h>                    
 30 #include <net/netns/generic.h>                    
 31 #include <net/protocol.h>                         
 32                                                   
 33 #include "datapath.h"                             
 34 #include "vport.h"                                
 35 #include "vport-netdev.h"                         
 36                                                   
 37 static struct vport_ops ovs_gre_vport_ops;        
 38                                                   
 39 static struct vport *gre_tnl_create(const stru    
 40 {                                                 
 41         struct net *net = ovs_dp_get_net(parms    
 42         struct net_device *dev;                   
 43         struct vport *vport;                      
 44         int err;                                  
 45                                                   
 46         vport = ovs_vport_alloc(0, &ovs_gre_vp    
 47         if (IS_ERR(vport))                        
 48                 return vport;                     
 49                                                   
 50         rtnl_lock();                              
 51         dev = gretap_fb_dev_create(net, parms-    
 52         if (IS_ERR(dev)) {                        
 53                 rtnl_unlock();                    
 54                 ovs_vport_free(vport);            
 55                 return ERR_CAST(dev);             
 56         }                                         
 57                                                   
 58         err = dev_change_flags(dev, dev->flags    
 59         if (err < 0) {                            
 60                 rtnl_delete_link(dev, 0, NULL)    
 61                 rtnl_unlock();                    
 62                 ovs_vport_free(vport);            
 63                 return ERR_PTR(err);              
 64         }                                         
 65                                                   
 66         rtnl_unlock();                            
 67         return vport;                             
 68 }                                                 
 69                                                   
 70 static struct vport *gre_create(const struct v    
 71 {                                                 
 72         struct vport *vport;                      
 73                                                   
 74         vport = gre_tnl_create(parms);            
 75         if (IS_ERR(vport))                        
 76                 return vport;                     
 77                                                   
 78         return ovs_netdev_link(vport, parms->n    
 79 }                                                 
 80                                                   
 81 static struct vport_ops ovs_gre_vport_ops = {     
 82         .type           = OVS_VPORT_TYPE_GRE,     
 83         .create         = gre_create,             
 84         .send           = dev_queue_xmit,         
 85         .destroy        = ovs_netdev_tunnel_de    
 86 };                                                
 87                                                   
 88 static int __init ovs_gre_tnl_init(void)          
 89 {                                                 
 90         return ovs_vport_ops_register(&ovs_gre    
 91 }                                                 
 92                                                   
 93 static void __exit ovs_gre_tnl_exit(void)         
 94 {                                                 
 95         ovs_vport_ops_unregister(&ovs_gre_vpor    
 96 }                                                 
 97                                                   
 98 module_init(ovs_gre_tnl_init);                    
 99 module_exit(ovs_gre_tnl_exit);                    
100                                                   
101 MODULE_DESCRIPTION("OVS: GRE switching port");    
102 MODULE_LICENSE("GPL");                            
103 MODULE_ALIAS("vport-type-3");                     
104                                                   

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