Lines Matching refs:skbn
1168 struct sk_buff *skbn; in rose_sendmsg() local
1179 if ((skbn = sock_alloc_send_skb(sk, frontlen + ROSE_PACLEN, 0, &err)) == NULL) { in rose_sendmsg()
1184 skbn->sk = sk; in rose_sendmsg()
1185 skbn->free = 1; in rose_sendmsg()
1186 skbn->arp = 1; in rose_sendmsg()
1188 skb_reserve(skbn, frontlen); in rose_sendmsg()
1193 skb_copy_from_linear_data(skb, skb_put(skbn, lg), lg); in rose_sendmsg()
1197 skb_push(skbn, ROSE_MIN_LEN); in rose_sendmsg()
1198 skb_copy_to_linear_data(skbn, header, ROSE_MIN_LEN); in rose_sendmsg()
1201 skbn->data[2] |= M_BIT; in rose_sendmsg()
1203 skb_queue_tail(&sk->sk_write_queue, skbn); /* Throw it on the queue */ in rose_sendmsg()