Searched defs:skip (Results 1 - 19 of 19) sorted by relevance

/net/netfilter/ipvs/
H A Dip_vs_ftp.c83 * with the "pattern", ignoring before "skip" and terminated with
89 char skip, char term,
109 if (skip) {
116 if (*s == skip)
118 } else if (*s != skip) {
87 ip_vs_ftp_get_addrport(char *data, char *data_limit, const char *pattern, size_t plen, char skip, char term, __be32 *addr, __be16 *port, char **start, char **end) argument
/net/mac80211/
H A Dscan.c607 int skip; local
610 skip = 0;
616 skip = 1;
621 if (skip) {
622 /* if we skip this channel return to the decision state */
/net/netfilter/
H A Dnf_conntrack_ftp.c66 char skip; member in struct:ftp_search
75 .skip = ' ',
83 .skip = ' ',
93 .skip = '(',
101 .skip = '(',
259 char skip, char term,
294 /* Now we've found the constant string, try to skip
295 to the 'skip' character */
296 for (i = plen; data[i] != skip; i++)
302 pr_debug("Skipped up to `%c'!\n", skip);
257 find_pattern(const char *data, size_t dlen, const char *pattern, size_t plen, char skip, char term, unsigned int *numoff, unsigned int *numlen, struct nf_conntrack_man *cmd, int (*getnum)(const char *, size_t, struct nf_conntrack_man *, char)) argument
[all...]
/net/bridge/
H A Dbr_fdb.c311 unsigned long maxnum, unsigned long skip)
332 if (skip) {
333 --skip;
594 goto skip;
602 skip:
310 br_fdb_fillbuf(struct net_bridge *br, void *buf, unsigned long maxnum, unsigned long skip) argument
/net/ceph/
H A Dmon_client.c453 int *skip)
464 *skip = 1;
468 *skip = 0;
1013 int *skip)
1020 *skip = 0;
1028 return get_generic_reply(con, hdr, skip);
1037 return NULL; /* ENOMEM--return skip == 0 */
1043 *skip = 1;
451 get_generic_reply(struct ceph_connection *con, struct ceph_msg_header *hdr, int *skip) argument
1011 mon_alloc_msg(struct ceph_connection *con, struct ceph_msg_header *hdr, int *skip) argument
H A Dmessenger.c170 * When skipping (ignoring) a block of input we read it into a "skip
2211 static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2271 int skip = 0; local
2275 ret = ceph_con_in_msg_alloc(con, &skip);
2279 BUG_ON(!con->in_msg ^ skip);
2285 skip = 1;
2287 if (skip) {
2288 /* skip this message */
2289 dout("alloc_msg said skip message\n");
2559 int skip local
3204 ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip) argument
[all...]
H A Dosd_client.c2432 int *skip)
2446 *skip = 1;
2485 *skip = 1;
2492 *skip = 0;
2503 int *skip)
2509 *skip = 0;
2515 return get_reply(con, hdr, skip);
2519 *skip = 1;
2430 get_reply(struct ceph_connection *con, struct ceph_msg_header *hdr, int *skip) argument
2501 alloc_msg(struct ceph_connection *con, struct ceph_msg_header *hdr, int *skip) argument
/net/sctp/
H A Dsm_sideeffect.c942 struct sctp_fwdtsn_skip *skip; local
944 sctp_walk_fwdtsn(skip, chunk) {
945 sctp_ulpq_skip(ulpq, ntohs(skip->stream), ntohs(skip->ssn));
H A Dsm_make_chunk.c3447 struct sctp_fwdtsn_skip skip; local
3463 skip.stream = skiplist[i].stream;
3464 skip.ssn = skiplist[i].ssn;
3465 sctp_addto_chunk(retval, sizeof(skip), &skip);
H A Dsm_statefuns.c1593 * verification tag, so we skip the check.
3648 * ('Peer- Sequence-Number' + 1), simply skip to the next
3655 * should skip the ASCONF Chunk and not include ASCONF-ACK
3840 struct sctp_fwdtsn_skip *skip; local
3871 sctp_walk_fwdtsn(skip, chunk) {
3872 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
3908 struct sctp_fwdtsn_skip *skip; local
3939 sctp_walk_fwdtsn(skip, chunk) {
3940 if (ntohs(skip->stream) >= asoc->c.sinit_max_instreams)
/net/sunrpc/
H A Dsvc_xprt.c1079 size_t skip; local
1096 skip = rqstp->rq_arg.len - rqstp->rq_arg.head[0].iov_len;
1097 memcpy(dr->args, rqstp->rq_arg.head[0].iov_base - skip,
/net/bluetooth/
H A Dmgmt.c889 static int new_settings(struct hci_dev *hdev, struct sock *skip) argument
895 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
/net/ipv4/netfilter/
H A Darp_tables.c1424 int skip = i; local
1427 if (skip-- > 0)
H A Dip_tables.c1746 int skip = i; local
1749 if (skip-- > 0)
/net/ipv6/netfilter/
H A Dip6_tables.c1756 int skip = i; local
1759 if (skip-- > 0)
/net/openvswitch/
H A Ddatapath.c909 /* If OVS_FLOW_ATTR_ACTIONS doesn't fit, skip dumping the actions if
1572 int skip = cb->args[0]; local
1577 if (i >= skip &&
1919 int bucket = cb->args[0], skip = cb->args[1]; local
1932 if (j >= skip &&
1942 skip = 0;
/net/unix/
H A Daf_unix.c1773 int peeked, skip; local
1787 skip = sk_peek_offset(sk, flags);
1789 skb = __skb_recv_datagram(sk, flags, &peeked, &skip, &err);
1806 if (size > skb->len - skip)
1807 size = skb->len - skip;
1808 else if (size < skb->len - skip)
1811 err = skb_copy_datagram_iovec(skb, skip, msg->msg_iov, size);
1849 err = (flags & MSG_TRUNC) ? skb->len - skip : size;
1911 int skip; local
1987 skip
[all...]
/net/ipv6/
H A Droute.c2711 int skip; member in struct:rt6_proc_arg
/net/packet/
H A Daf_packet.c1163 unsigned int idx, unsigned int skip,
1170 if (i != skip && packet_rcv_has_room(pkt_sk(f->arr[i]), skb)) {
1161 fanout_demux_rollover(struct packet_fanout *f, struct sk_buff *skb, unsigned int idx, unsigned int skip, unsigned int num) argument

Completed in 247 milliseconds