Searched refs:path (Results 1 - 25 of 28) sorted by relevance

12

/net/iucv/
H A Diucv.c153 * The work element to deliver path pending interrupts.
711 * @pathid: path identification number.
714 * Sever an iucv path to free up the pathid. Used internally.
742 * Function called after a path has been severed to find all remaining
751 * When a path is severed, the pathid can be reused immediately
868 * @path: address of iucv path structure
871 * @private: private data passed to interrupt handlers for this path
874 * external interrupt and now wishes to complete the IUCV communication path.
878 int iucv_path_accept(struct iucv_path *path, struc argument
925 iucv_path_connect(struct iucv_path *path, struct iucv_handler *handler, u8 userid[8], u8 system[8], u8 userdata[16], void *private) argument
988 iucv_path_quiesce(struct iucv_path *path, u8 userdata[16]) argument
1020 iucv_path_resume(struct iucv_path *path, u8 userdata[16]) argument
1050 iucv_path_sever(struct iucv_path *path, u8 userdata[16]) argument
1082 iucv_message_purge(struct iucv_path *path, struct iucv_message *msg, u32 srccls) argument
1122 iucv_message_receive_iprmdata(struct iucv_path *path, struct iucv_message *msg, u8 flags, void *buffer, size_t size, size_t *residual) argument
1172 __iucv_message_receive(struct iucv_path *path, struct iucv_message *msg, u8 flags, void *buffer, size_t size, size_t *residual) argument
1222 iucv_message_receive(struct iucv_path *path, struct iucv_message *msg, u8 flags, void *buffer, size_t size, size_t *residual) argument
1248 iucv_message_reject(struct iucv_path *path, struct iucv_message *msg) argument
1286 iucv_message_reply(struct iucv_path *path, struct iucv_message *msg, u8 flags, void *reply, size_t size) argument
1337 __iucv_message_send(struct iucv_path *path, struct iucv_message *msg, u8 flags, u32 srccls, void *buffer, size_t size) argument
1391 iucv_message_send(struct iucv_path *path, struct iucv_message *msg, u8 flags, u32 srccls, void *buffer, size_t size) argument
1422 iucv_message_send2way(struct iucv_path *path, struct iucv_message *msg, u8 flags, u32 srccls, void *buffer, size_t size, void *answer, size_t asize, size_t *residual) argument
1489 struct iucv_path *path; local
1549 struct iucv_path *path = iucv_path_table[ipc->ippathid]; local
1579 struct iucv_path *path = iucv_path_table[ips->ippathid]; local
1615 struct iucv_path *path = iucv_path_table[ipq->ippathid]; local
1643 struct iucv_path *path = iucv_path_table[ipr->ippathid]; local
1674 struct iucv_path *path = iucv_path_table[imc->ippathid]; local
1719 struct iucv_path *path = iucv_path_table[imp->ippathid]; local
[all...]
H A Daf_iucv.c282 * Always returns true if the socket is not connected (no iucv path for
292 return (skb_queue_len(&iucv->send_skb_q) < iucv->path->msglim);
436 /* Terminate an IUCV path */
441 struct iucv_path *path = iucv->path; local
443 if (iucv->path) {
444 iucv->path = NULL;
449 pr_iucv->path_sever(path, user_data);
451 pr_iucv->path_sever(path, NULL);
452 iucv_path_free(path);
1018 iucv_send_iprm(struct iucv_path *path, struct iucv_message *msg, struct sk_buff *skb) argument
1248 iucv_process_message(struct sock *sk, struct sk_buff *skb, struct iucv_path *path, struct iucv_message *msg) argument
1679 iucv_callback_connreq(struct iucv_path *path, u8 ipvmid[8], u8 ipuser[16]) argument
1774 iucv_callback_connack(struct iucv_path *path, u8 ipuser[16]) argument
1782 iucv_callback_rx(struct iucv_path *path, struct iucv_message *msg) argument
1826 iucv_callback_txdone(struct iucv_path *path, struct iucv_message *msg) argument
1868 iucv_callback_connrej(struct iucv_path *path, u8 ipuser[16]) argument
1886 iucv_callback_shutdown(struct iucv_path *path, u8 ipuser[16]) argument
[all...]
/net/hsr/
H A Dhsr_main.h47 * path, LSDU_size, sequence Nr }. But we let eth_header() create { h_dest,
48 * h_source, h_proto = 0x88FB }, and add { path, LSDU_size, sequence Nr,
61 /* The helper functions below assumes that 'path' occupies the 4 most
62 * significant bits of the 16-bit field shared by 'path' and 'LSDU_size' (or
68 * with the path field in-between, which seems strange. I'm guessing the MAC
81 static inline void set_hsr_tag_path(struct hsr_tag *ht, u16 path) argument
84 (ntohs(ht->path_and_LSDU_size) & 0x0FFF) | (path << 12));
124 static inline void set_hsr_stag_path(struct hsr_sup_tag *hst, u16 path) argument
126 set_hsr_tag_path((struct hsr_tag *) hst, path);
/net/ax25/
H A Dsysctl_net_ax25.c153 char path[sizeof("net/ax25/") + IFNAMSIZ]; local
164 snprintf(path, sizeof(path), "net/ax25/%s", ax25_dev->dev->name);
165 ax25_dev->sysheader = register_net_sysctl(&init_net, path, table);
/net/
H A Dsysctl_net.c104 const char *path, struct ctl_table *table)
106 return __register_sysctl_table(&net->sysctls, path, table);
103 register_net_sysctl(struct net *net, const char *path, struct ctl_table *table) argument
H A Dsocket.c361 struct path path; local
371 path.dentry = d_alloc_pseudo(sock_mnt->mnt_sb, &name);
372 if (unlikely(!path.dentry))
374 path.mnt = mntget(sock_mnt);
376 d_instantiate(path.dentry, SOCK_INODE(sock));
379 file = alloc_file(&path, FMODE_READ | FMODE_WRITE,
383 ihold(path.dentry->d_inode);
384 path_put(&path);
/net/ipv4/
H A Dxfrm4_policy.c70 static int xfrm4_init_path(struct xfrm_dst *path, struct dst_entry *dst, argument
201 struct dst_entry *path = xdst->route; local
203 path->ops->update_pmtu(path, sk, skb, mtu);
210 struct dst_entry *path = xdst->route; local
212 path->ops->redirect(path, sk, skb);
H A Dtcp_fastopen.c75 static bool __tcp_fastopen_cookie_gen(const void *path, argument
86 crypto_cipher_encrypt_one(ctx->tfm, foc->val, path);
107 __be32 path[4] = { iph->saddr, iph->daddr, 0, 0 }; local
108 return __tcp_fastopen_cookie_gen(path, foc);
H A Ddevinet.c2160 char path[sizeof("net/ipv4/conf/") + IFNAMSIZ]; local
2172 snprintf(path, sizeof(path), "net/ipv4/conf/%s", dev_name);
2174 t->sysctl_header = register_net_sysctl(net, path, t->devinet_vars);
H A DKconfig40 asymmetric routing (packets from you to a host take a different path
/net/ipv6/
H A Dxfrm6_policy.c83 static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst, argument
89 path->path_cookie = rt->rt6i_node->fn_sernum;
92 path->u.rt6.rt6i_nfheader_len = nfheader_len;
232 struct dst_entry *path = xdst->route; local
234 path->ops->update_pmtu(path, sk, skb, mtu);
241 struct dst_entry *path = xdst->route; local
243 path->ops->redirect(path, sk, skb);
H A DKconfig161 networks over an IPv4-only path.
H A Dip6_output.c399 * that different fragments will go along one path. --ANK
1208 rt->dst.dev->mtu : dst_mtu(rt->dst.path);
1214 if (dst_allfrag(rt->dst.path))
/net/bridge/
H A Dbr_nf_core.c82 rt->dst.path = &rt->dst;
/net/unix/
H A Daf_unix.c61 * accept() returns a path name even if the connecting socket has closed
62 * in the meantime (BSD loses the path and gives up).
63 * accept() returns 0 length path for an unbound connector. BSD returns 16
64 * and a null first byte in the path (but not for gethost/peername - BSD bug ??)
224 * subtle. 108 is the longest valid AF_UNIX path for a binding.
306 struct dentry *dentry = unix_sk(s)->path.dentry;
390 struct path path; local
401 path = u->path;
778 struct path path; local
831 struct path path; local
902 struct path path; local
[all...]
H A Ddiag.c24 struct dentry *dentry = unix_sk(sk)->path.dentry;
/net/openvswitch/
H A DKconfig18 The Open vSwitch datapath provides an in-kernel fast path for packet
/net/netfilter/
H A Dnf_conntrack_proto.c41 const char *path,
45 *header = register_net_sysctl(net, path, table);
39 nf_ct_register_sysctl(struct net *net, struct ctl_table_header **header, const char *path, struct ctl_table *table) argument
/net/9p/
H A Dclient.c1142 qid.type, (unsigned long long)qid.path, qid.version);
1210 (unsigned long long)wqids[count].path,
1267 (unsigned long long)qid.path, qid.version, iounit);
1311 (unsigned long long)qid->path,
1356 (unsigned long long)qid.path,
1394 qid->type, (unsigned long long)qid->path, qid->version);
1718 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1776 ret->st_result_mask, ret->qid.type, ret->qid.path,
1840 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
2146 (unsigned long long)qid->path, qi
[all...]
H A Dprotocol.c194 &qid->path);
423 qid->path);
/net/core/
H A Ddst.c181 dst->path = dst;
/net/decnet/
H A Ddn_dev.c213 char path[sizeof("net/decnet/conf/") + IFNAMSIZ]; local
224 snprintf(path, sizeof(path), "net/decnet/conf/%s",
229 t->sysctl_header = register_net_sysctl(&init_net, path, t->dn_dev_vars);
/net/xfrm/
H A Dxfrm_policy.c1589 static inline int xfrm_init_path(struct xfrm_dst *path, struct dst_entry *dst, argument
1599 err = afinfo->init_path(path, dst, nfheader_len);
1718 dst0->path = dst;
1901 dst_hold(dst->path);
1902 dst = xfrm_lookup(xp_net(pol), dst->path, &fl,
1932 dst_hold(skb_dst(skb)->path);
1933 dst = xfrm_lookup(xp_net(pol), skb_dst(skb)->path,
2036 dst1->path = dst;
2635 * X is the "xdst->route" of A (X is also the "dst->path" of A
2724 if (!dst_check(dst->path, ((struc
[all...]
/net/ipv4/netfilter/
H A DKconfig184 tristate '"rpfilter" reverse path filter match support'
/net/ipv6/netfilter/
H A DKconfig175 tristate '"rpfilter" reverse path filter match support'

Completed in 297 milliseconds

12