wimax_msg_send

Langue: en

Autres versions - même langue

Version: May 2009 (fedora - 06/07/09)

Section: 9 (Appels noyau Linux)

NAME

wimax_msg_send - Send a pre-allocated message to user space

SYNOPSIS

int wimax_msg_send(struct wimax_dev * wimax_dev, struct sk_buff * skb);

ARGUMENTS

wimax_dev

WiMAX device descriptor

skb


struct sk_buff returned by wimax_msg_alloc. Note the ownership of skb is transferred to this function.

RETURNS

0 if ok, < 0 errno code on error

DESCRIPTION

Sends a free-form message that was preallocated with wimax_msg_alloc and filled up.

Assumes that once you pass an skb to this function for sending, it owns it and will release it when done (on success).

IMPORTANT

Don't use skb_push/skb_pull/skb_reserve on the skb, as wimax_msg_send depends on skb->data being placed at the beginning of the user message.