cregit-Linux how code gets into the kernel

Release 4.14 net/8021q/vlan_gvrp.c

Directory: net/8021q
/*
 *      IEEE 802.1Q GARP VLAN Registration Protocol (GVRP)
 *
 *      Copyright (c) 2008 Patrick McHardy <kaber@trash.net>
 *
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      version 2 as published by the Free Software Foundation.
 */
#include <linux/types.h>
#include <linux/if_vlan.h>
#include <net/garp.h>
#include "vlan.h"


#define GARP_GVRP_ADDRESS	{ 0x01, 0x80, 0xc2, 0x00, 0x00, 0x21 }


enum gvrp_attributes {
	
GVRP_ATTR_INVALID,
	
GVRP_ATTR_VID,
	
__GVRP_ATTR_MAX
};

#define GVRP_ATTR_MAX	(__GVRP_ATTR_MAX - 1)


static struct garp_application vlan_gvrp_app __read_mostly = {
	.proto.group_address	= GARP_GVRP_ADDRESS,
	.maxattr		= GVRP_ATTR_MAX,
	.type			= GARP_APPLICATION_GVRP,
};


int vlan_gvrp_request_join(const struct net_device *dev) { const struct vlan_dev_priv *vlan = vlan_dev_priv(dev); __be16 vlan_id = htons(vlan->vlan_id); if (vlan->vlan_proto != htons(ETH_P_8021Q)) return 0; return garp_request_join(vlan->real_dev, &vlan_gvrp_app, &vlan_id, sizeof(vlan_id), GVRP_ATTR_VID); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy6597.01%375.00%
Jiri Pirko22.99%125.00%
Total67100.00%4100.00%


void vlan_gvrp_request_leave(const struct net_device *dev) { const struct vlan_dev_priv *vlan = vlan_dev_priv(dev); __be16 vlan_id = htons(vlan->vlan_id); if (vlan->vlan_proto != htons(ETH_P_8021Q)) return; garp_request_leave(vlan->real_dev, &vlan_gvrp_app, &vlan_id, sizeof(vlan_id), GVRP_ATTR_VID); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy6296.88%375.00%
Jiri Pirko23.12%125.00%
Total64100.00%4100.00%


int vlan_gvrp_init_applicant(struct net_device *dev) { return garp_init_applicant(dev, &vlan_gvrp_app); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy19100.00%1100.00%
Total19100.00%1100.00%


void vlan_gvrp_uninit_applicant(struct net_device *dev) { garp_uninit_applicant(dev, &vlan_gvrp_app); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy18100.00%1100.00%
Total18100.00%1100.00%


int __init vlan_gvrp_init(void) { return garp_register_application(&vlan_gvrp_app); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy15100.00%1100.00%
Total15100.00%1100.00%


void vlan_gvrp_uninit(void) { garp_unregister_application(&vlan_gvrp_app); }

Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy13100.00%1100.00%
Total13100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Patrick McHardy24898.41%375.00%
Jiri Pirko41.59%125.00%
Total252100.00%4100.00%
Directory: net/8021q
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.