Lines Matching refs:skbn
1162 struct sk_buff *skbn; in rose_sendmsg() local
1173 if ((skbn = sock_alloc_send_skb(sk, frontlen + ROSE_PACLEN, 0, &err)) == NULL) { in rose_sendmsg()
1178 skbn->sk = sk; in rose_sendmsg()
1179 skbn->free = 1; in rose_sendmsg()
1180 skbn->arp = 1; in rose_sendmsg()
1182 skb_reserve(skbn, frontlen); in rose_sendmsg()
1187 skb_copy_from_linear_data(skb, skb_put(skbn, lg), lg); in rose_sendmsg()
1191 skb_push(skbn, ROSE_MIN_LEN); in rose_sendmsg()
1192 skb_copy_to_linear_data(skbn, header, ROSE_MIN_LEN); in rose_sendmsg()
1195 skbn->data[2] |= M_BIT; in rose_sendmsg()
1197 skb_queue_tail(&sk->sk_write_queue, skbn); /* Throw it on the queue */ in rose_sendmsg()