Lines Matching refs:skip
787 int skip = 0;
790 skip = con->out_kvec[off + con->out_kvec_left - 1].iov_len;
791 BUG_ON(con->out_kvec_bytes < skip);
793 con->out_kvec_bytes -= skip;
797 return skip;
2354 static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip);
2414 int skip = 0;
2418 ret = ceph_con_in_msg_alloc(con, &skip);
2422 BUG_ON(!con->in_msg ^ skip);
2423 if (skip) {
2424 /* skip this message */
2425 dout("alloc_msg said skip message\n");
3163 dout("%s %p msg %p - was sending, will write %d skip %d\n",
3191 /* skip rest of message */
3419 * On success, if we set *skip = 1:
3422 * or if we set *skip = 0:
3427 static int ceph_con_in_msg_alloc(struct ceph_connection *con, int *skip)
3438 msg = con->ops->alloc_msg(con, hdr, skip);
3446 BUG_ON(*skip);
3451 * Null message pointer means either we should skip
3455 if (*skip)