atm_alloc_charge
new_skb = atm_alloc_charge(out_vcc,size,GFP_ATOMIC);
new_skb = atm_alloc_charge(out_vcc,skb->len,GFP_KERNEL);
skb = length ? atm_alloc_charge(vcc,length,GFP_ATOMIC) : NULL;
skb = eff ? atm_alloc_charge(vcc,eff << 2,GFP_ATOMIC) : NULL;
skb = atm_alloc_charge(vcc, he_vcc->pdu_len + rx_skb_reserve,
if (!(skb = atm_alloc_charge(vcc, len, GFP_ATOMIC))) {
skb = atm_alloc_charge(lvcc->rx.atmvcc, size, GFP_ATOMIC);
struct sk_buff *atm_alloc_charge(struct atm_vcc *vcc,int pdu_size,
EXPORT_SYMBOL(atm_alloc_charge);