cregit-Linux how code gets into the kernel

Release 4.14 net/atm/raw.c

Directory: net/atm
// SPDX-License-Identifier: GPL-2.0
/* net/atm/raw.c - Raw AAL0 and AAL5 transports */

/* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */


#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__

#include <linux/module.h>
#include <linux/atmdev.h>
#include <linux/capability.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/mm.h>
#include <linux/slab.h>

#include "common.h"
#include "protocols.h"

/*
 * SKB == NULL indicates that the link is being closed
 */


static void atm_push_raw(struct atm_vcc *vcc, struct sk_buff *skb) { if (skb) { struct sock *sk = sk_atm(vcc); skb_queue_tail(&sk->sk_receive_queue, skb); sk->sk_data_ready(sk); } }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3163.27%114.29%
Arnaldo Carvalho de Melo1122.45%228.57%
Chas Williams714.29%457.14%
Total49100.00%7100.00%


static void atm_pop_raw(struct atm_vcc *vcc, struct sk_buff *skb) { struct sock *sk = sk_atm(vcc); pr_debug("(%d) %d -= %d\n", vcc->vci, sk_wmem_alloc_get(sk), skb->truesize); WARN_ON(refcount_sub_and_test(skb->truesize, &sk->sk_wmem_alloc)); dev_kfree_skb_any(skb); sk->sk_write_space(sk); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)4360.56%218.18%
Arnaldo Carvalho de Melo1115.49%218.18%
Chas Williams811.27%327.27%
Elena Reshetova45.63%19.09%
Stephen Hemminger34.23%19.09%
Eric Dumazet11.41%19.09%
Joe Perches11.41%19.09%
Total71100.00%11100.00%


static int atm_send_aal0(struct atm_vcc *vcc, struct sk_buff *skb) { /* * Note that if vpi/vci are _ANY or _UNSPEC the below will * still work */ if (!capable(CAP_NET_ADMIN) && (((u32 *)skb->data)[0] & (ATM_HDR_VPI_MASK | ATM_HDR_VCI_MASK)) != ((vcc->vpi << ATM_HDR_VPI_SHIFT) | (vcc->vci << ATM_HDR_VCI_SHIFT))) { kfree_skb(skb); return -EADDRNOTAVAIL; } return vcc->dev->ops->send(vcc, skb); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)89100.00%1100.00%
Total89100.00%1100.00%


int atm_init_aal0(struct atm_vcc *vcc) { vcc->push = atm_push_raw; vcc->pop = atm_pop_raw; vcc->push_oam = NULL; vcc->send = atm_send_aal0; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)37100.00%2100.00%
Total37100.00%2100.00%


int atm_init_aal34(struct atm_vcc *vcc) { vcc->push = atm_push_raw; vcc->pop = atm_pop_raw; vcc->push_oam = NULL; vcc->send = vcc->dev->ops->send; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)43100.00%2100.00%
Total43100.00%2100.00%


int atm_init_aal5(struct atm_vcc *vcc) { vcc->push = atm_push_raw; vcc->pop = atm_pop_raw; vcc->push_oam = NULL; vcc->send = vcc->dev->ops->send; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)43100.00%2100.00%
Total43100.00%2100.00%

EXPORT_SYMBOL(atm_init_aal5);

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)31584.00%422.22%
Arnaldo Carvalho de Melo225.87%211.11%
Chas Williams154.00%527.78%
Joe Perches82.13%15.56%
Elena Reshetova41.07%15.56%
Tejun Heo30.80%15.56%
Randy Dunlap30.80%15.56%
Stephen Hemminger30.80%15.56%
Eric Dumazet10.27%15.56%
Greg Kroah-Hartman10.27%15.56%
Total375100.00%18100.00%
Directory: net/atm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.