| /linux/fs/smb/client/ |
| H A D | smb2inode.c | 204 struct kvec *out_iov, int *out_buftype, struct dentry *dentry) in smb2_compound_op() argument 755 if (out_iov && out_buftype) { in smb2_compound_op() 756 memcpy(out_iov, rsp_iov, num_cmds * sizeof(*out_iov)); in smb2_compound_op() 811 struct kvec *out_iov, int *out_buftype) in ea_unsupported() argument 819 struct smb2_hdr *hdr = out_iov[i].iov_base; in ea_unsupported() 845 struct kvec in_iov[3], out_iov[5] = {}; in smb2_query_path_info() local 902 cfile, out_iov, out_buftype, NULL); in smb2_query_path_info() 903 hdr = out_iov[0].iov_base; in smb2_query_path_info() 913 rc = parse_create_response(data, cifs_sb, full_path, &out_iov[0]); in smb2_query_path_info() 940 free_rsp_iov(out_iov, out_buftype, ARRAY_SIZE(out_iov)); in smb2_query_path_info() [all …]
|
| H A D | cifssmb.c | 3099 struct kvec out_iov; in cifs_create_reparse_inode() local 3187 CIFS_NO_RSP_BUF, &out_iov); in cifs_create_reparse_inode()
|
| /linux/drivers/vdpa/vdpa_sim/ |
| H A D | vdpa_sim_blk.c | 123 ret = vringh_getdesc_iotlb(&vq->vring, &vq->out_iov, &vq->in_iov, in vdpasim_blk_handle_req() 128 if (vq->out_iov.used < 1 || vq->in_iov.used < 1) { in vdpasim_blk_handle_req() 129 dev_dbg(&vdpasim->vdpa.dev, "missing headers - out_iov: %u in_iov %u\n", in vdpasim_blk_handle_req() 130 vq->out_iov.used, vq->in_iov.used); in vdpasim_blk_handle_req() 144 to_pull = vringh_kiov_length(&vq->out_iov); in vdpasim_blk_handle_req() 146 bytes = vringh_iov_pull_iotlb(&vq->vring, &vq->out_iov, &hdr, in vdpasim_blk_handle_req() 202 bytes = vringh_iov_pull_iotlb(&vq->vring, &vq->out_iov, in vdpasim_blk_handle_req() 245 bytes = vringh_iov_pull_iotlb(&vq->vring, &vq->out_iov, &range, in vdpasim_blk_handle_req()
|
| H A D | vdpa_sim_net.c | 145 &cvq->out_iov, in vdpasim_handle_cvq() 174 write = vringh_iov_push_iotlb(&cvq->vring, &cvq->out_iov, in vdpasim_handle_cvq() 178 vringh_kiov_cleanup(&cvq->out_iov); in vdpasim_handle_cvq() 220 err = vringh_getdesc_iotlb(&txq->vring, &txq->out_iov, NULL, in vdpasim_net_work() 229 read = vringh_iov_pull_iotlb(&txq->vring, &txq->out_iov, in vdpasim_net_work()
|
| H A D | vdpa_sim.h | 25 struct vringh_kiov out_iov; member
|
| H A D | vdpa_sim.c | 749 vringh_kiov_cleanup(&vdpasim->vqs[i].out_iov); in vdpasim_free()
|
| /linux/fs/fuse/ |
| H A D | ioctl.c | 231 struct iovec *in_iov = NULL, *out_iov = NULL; in fuse_do_ioctl() 278 out_iov = iov; in fuse_do_ioctl() 297 inarg.out_size = out_size = iov_length(out_iov, out_iovs); in fuse_do_ioctl() 378 out_iov = in_iov + in_iovs; in fuse_do_ioctl() 384 err = fuse_verify_ioctl_iov(fm->fc, out_iov, out_iovs); in fuse_do_ioctl() 396 iov_iter_init(&ii, ITER_DEST, out_iov, out_iovs, transferred); in fuse_do_ioctl() 230 struct iovec *in_iov = NULL, *out_iov = NULL; fuse_do_ioctl() local
|
| /linux/fs/btrfs/ |
| H A D | ioctl.c | 4351 goto out_iov; in btrfs_ioctl_encoded_read() 4356 goto out_iov; in btrfs_ioctl_encoded_read() 4395 out_iov: in btrfs_ioctl_encoded_read() 4475 goto out_iov; in btrfs_ioctl_encoded_write() 4480 goto out_iov; in btrfs_ioctl_encoded_write() 4485 goto out_iov; in btrfs_ioctl_encoded_write() 4495 out_iov: in btrfs_ioctl_encoded_write() 4918 goto out_iov; in btrfs_uring_encoded_write() 4930 goto out_iov; in btrfs_uring_encoded_write() 4935 goto out_iov; in btrfs_uring_encoded_write() [all...] |
| /linux/net/tls/ |
| H A D | tls_sw.c | 1244 /* This function decrypts the input skb into either out_iov or in out_sg in tls_sw_sendmsg_locked() 1247 * out_iov or out_sg must be non-NULL. In case both out_iov and out_sg are in tls_sw_sendmsg_locked() 1251 static int tls_decrypt_sg(struct sock *sk, struct iov_iter *out_iov, in tls_sw_sendmsg_locked() 1277 if (darg->zc && (out_iov || out_sg)) { in tls_sw_sendmsg_locked() 1280 if (out_iov) in tls_sw_sendmsg_locked() 1282 iov_iter_npages_cap(out_iov, INT_MAX, data_len); in tls_sw_sendmsg_locked() 1367 } else if (out_iov) { in tls_sw_splice_eof() 1371 err = tls_setup_from_iter(out_iov, data_len, &pages, &sgout[1], 1536 tls_decrypt_sg(struct sock * sk,struct iov_iter * out_iov,struct scatterlist * out_sg,struct tls_decrypt_arg * darg) tls_decrypt_sg() argument
|