• Home
  • Raw
  • Download

Lines Matching refs:vcc

311 	void (*push)(struct atm_vcc *vcc,struct sk_buff *skb);
312 void (*pop)(struct atm_vcc *vcc,struct sk_buff *skb); /* optional */
313 int (*push_oam)(struct atm_vcc *vcc,void *cell);
314 int (*send)(struct atm_vcc *vcc,struct sk_buff *skb);
340 static inline struct sock *sk_atm(struct atm_vcc *vcc) in sk_atm() argument
342 return (struct sock *)vcc; in sk_atm()
391 int (*open)(struct atm_vcc *vcc);
392 void (*close)(struct atm_vcc *vcc);
398 int (*getsockopt)(struct atm_vcc *vcc,int level,int optname,
400 int (*setsockopt)(struct atm_vcc *vcc,int level,int optname,
402 int (*send)(struct atm_vcc *vcc,struct sk_buff *skb);
403 int (*send_oam)(struct atm_vcc *vcc,void *cell,int flags);
407 int (*change_qos)(struct atm_vcc *vcc,struct atm_qos *qos,int flags);
420 struct atm_vcc *vcc; /* ATM VCC */ member
450 static inline void atm_force_charge(struct atm_vcc *vcc,int truesize) in atm_force_charge() argument
452 atomic_add(truesize, &sk_atm(vcc)->sk_rmem_alloc); in atm_force_charge()
456 static inline void atm_return(struct atm_vcc *vcc,int truesize) in atm_return() argument
458 atomic_sub(truesize, &sk_atm(vcc)->sk_rmem_alloc); in atm_return()
462 static inline int atm_may_send(struct atm_vcc *vcc,unsigned int size) in atm_may_send() argument
464 return (size + atomic_read(&sk_atm(vcc)->sk_wmem_alloc)) < in atm_may_send()
465 sk_atm(vcc)->sk_sndbuf; in atm_may_send()
486 int atm_charge(struct atm_vcc *vcc,int truesize);
487 struct sk_buff *atm_alloc_charge(struct atm_vcc *vcc,int pdu_size,
491 void vcc_release_async(struct atm_vcc *vcc, int reply);