Searched defs:skb (Results 1 - 6 of 6) sorted by relevance

/fs/quota/
H A Dnetlink.c48 struct sk_buff *skb; local
57 skb = genlmsg_new(msg_size, GFP_NOFS);
58 if (!skb) {
63 msg_head = genlmsg_put(skb, 0, atomic_add_return(1, &seq),
70 ret = nla_put_u32(skb, QUOTA_NL_A_QTYPE, qid.type);
73 ret = nla_put_u64(skb, QUOTA_NL_A_EXCESS_ID,
77 ret = nla_put_u32(skb, QUOTA_NL_A_WARNING, warntype);
80 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MAJOR, MAJOR(dev));
83 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MINOR, MINOR(dev));
86 ret = nla_put_u64(skb, QUOTA_NL_A_CAUSED_I
[all...]
/fs/afs/
H A Dvlclient.c62 struct sk_buff *skb, bool last)
71 afs_transfer_reply(call, skb);
61 afs_deliver_vl_get_entry_by_xxx(struct afs_call *call, struct sk_buff *skb, bool last) argument
H A Dcmservice.c171 static int afs_deliver_cb_callback(struct afs_call *call, struct sk_buff *skb, argument
181 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last);
191 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
211 ret = afs_extract_data(call, skb, last, call->buffer,
241 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
259 ret = afs_extract_data(call, skb, last, call->request,
282 if (skb->len != 0)
304 memcpy(&addr, &ip_hdr(skb)->saddr, 4);
333 struct sk_buff *skb,
339 _enter(",{%u},%d", skb
332 afs_deliver_cb_init_call_back_state(struct afs_call *call, struct sk_buff *skb, bool last) argument
365 afs_deliver_cb_init_call_back_state3(struct afs_call *call, struct sk_buff *skb, bool last) argument
408 afs_deliver_cb_probe(struct afs_call *call, struct sk_buff *skb, bool last) argument
453 afs_deliver_cb_probe_uuid(struct afs_call *call, struct sk_buff *skb, bool last) argument
588 afs_deliver_cb_tell_me_about_yourself(struct afs_call *call, struct sk_buff *skb, bool last) argument
[all...]
H A Drxrpc.c143 static void afs_data_delivered(struct sk_buff *skb) argument
145 if (!skb) {
150 skb, skb->mark, atomic_read(&afs_outstanding_skbs));
153 rxrpc_kernel_data_delivered(skb);
160 static void afs_free_skb(struct sk_buff *skb) argument
162 if (!skb) {
167 skb, skb->mark, atomic_read(&afs_outstanding_skbs));
170 rxrpc_kernel_free_skb(skb);
346 struct sk_buff *skb; local
427 afs_rx_interceptor(struct sock *sk, unsigned long user_call_ID, struct sk_buff *skb) argument
458 struct sk_buff *skb; local
551 struct sk_buff *skb; local
668 afs_transfer_reply(struct afs_call *call, struct sk_buff *skb) argument
684 struct sk_buff *skb; local
728 afs_deliver_cm_op_id(struct afs_call *call, struct sk_buff *skb, bool last) argument
843 afs_extract_data(struct afs_call *call, struct sk_buff *skb, bool last, void *buf, size_t count) argument
[all...]
H A Dfsclient.c239 struct sk_buff *skb, bool last)
246 afs_transfer_reply(call, skb);
313 struct sk_buff *skb, bool last)
321 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last);
337 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
355 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
375 ret = afs_extract_data(call, skb, last, buffer,
390 ret = afs_extract_data(call, skb, last, call->buffer,
409 if (skb->len != 0)
536 struct sk_buff *skb, boo
238 afs_deliver_fs_fetch_status(struct afs_call *call, struct sk_buff *skb, bool last) argument
312 afs_deliver_fs_fetch_data(struct afs_call *call, struct sk_buff *skb, bool last) argument
535 afs_deliver_fs_give_up_callbacks(struct afs_call *call, struct sk_buff *skb, bool last) argument
620 afs_deliver_fs_create_vnode(struct afs_call *call, struct sk_buff *skb, bool last) argument
719 afs_deliver_fs_remove(struct afs_call *call, struct sk_buff *skb, bool last) argument
802 afs_deliver_fs_link(struct afs_call *call, struct sk_buff *skb, bool last) argument
890 afs_deliver_fs_symlink(struct afs_call *call, struct sk_buff *skb, bool last) argument
997 afs_deliver_fs_rename(struct afs_call *call, struct sk_buff *skb, bool last) argument
1103 afs_deliver_fs_store_data(struct afs_call *call, struct sk_buff *skb, bool last) argument
1289 afs_deliver_fs_store_status(struct afs_call *call, struct sk_buff *skb, bool last) argument
1488 afs_deliver_fs_get_volume_status(struct afs_call *call, struct sk_buff *skb, bool last) argument
1763 afs_deliver_fs_xxxx_lock(struct afs_call *call, struct sk_buff *skb, bool last) argument
[all...]
/fs/dlm/
H A Dnetlink.c27 struct sk_buff *skb; local
30 skb = genlmsg_new(size, GFP_NOFS);
31 if (!skb)
35 data = genlmsg_put(skb, 0, dlm_nl_seqnum++, &family, 0, cmd);
37 nlmsg_free(skb);
41 *skbp = skb;
45 static struct dlm_lock_data *mk_data(struct sk_buff *skb) argument
49 ret = nla_reserve(skb, DLM_TYPE_LOCK, sizeof(struct dlm_lock_data));
55 static int send_data(struct sk_buff *skb) argument
57 struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb
70 user_cmd(struct sk_buff *skb, struct genl_info *info) argument
[all...]

Completed in 428 milliseconds