| /linux/fs/xfs/ |
| H A D | xfs_attr_item.h | 15 struct kvec name; 16 struct kvec new_name; /* PPTR_REPLACE only */ 17 struct kvec value; 18 struct kvec new_value; /* PPTR_REPLACE only */
|
| /linux/rust/kernel/ |
| H A D | alloc.rs | 7 pub mod kvec; module 15 pub use self::kvec::IntoIter; 16 pub use self::kvec::KVVec; 17 pub use self::kvec::KVec; 18 pub use self::kvec::VVec; 19 pub use self::kvec::Vec;
|
| /linux/fs/9p/ |
| H A D | xattr.c | 24 struct kvec kvec = {.iov_base = buffer, .iov_len = buffer_size}; in v9fs_fid_xattr_get() local 28 iov_iter_kvec(&to, ITER_DEST, &kvec, 1, buffer_size); in v9fs_fid_xattr_get() 111 struct kvec kvec = {.iov_base = (void *)value, .iov_len = value_len}; in v9fs_fid_xattr_set() local 115 iov_iter_kvec(&from, ITER_SOURCE, &kvec, 1, value_len); in v9fs_fid_xattr_set()
|
| H A D | vfs_dir.c | 94 struct kvec kvec; in v9fs_dir_readdir() 104 kvec.iov_base = rdir->buf; in v9fs_dir_readdir() 105 kvec.iov_len = buflen; in v9fs_dir_readdir() 115 iov_iter_kvec(&to, ITER_DEST, &kvec, 1, buflen); in v9fs_dir_readdir() 92 struct kvec kvec; v9fs_dir_readdir() local
|
| /linux/fs/smb/client/ |
| H A D | smb2proto.h | 59 struct kvec *reparse_iov, 60 struct kvec *xattr_iov); 63 const char *full_path, u32 *tag, struct kvec *rsp, 108 const struct kvec *iov, const char *full_path, 140 struct create_posix_rsp *posix, struct kvec *err_iov, 194 unsigned int *nbytes, struct kvec *iov, int n_vec); 248 int smb2_parse_contexts(struct TCP_Server_Info *server, struct kvec *rsp_iov, 255 struct kvec *iov, unsigned int min_buf_size); 257 struct kvec *iov, unsigned int minbufsize, 263 struct kvec *io [all...] |
| H A D | smb2inode.c | 28 static struct reparse_data_buffer *reparse_buf_ptr(struct kvec *iov) in reparse_buf_ptr() 64 struct kvec *rsp_iov) in parse_posix_sids() 106 static int check_wsl_eas(struct kvec *rsp_iov) in check_wsl_eas() 202 struct cifs_open_parms *oparms, struct kvec *in_iov, in smb2_compound_op() 204 struct kvec *out_iov, int *out_buftype, struct dentry *dentry) in smb2_compound_op() 218 struct kvec *rsp_iov, *iov; in smb2_compound_op() 780 const struct kvec *iov) in parse_create_response() 811 struct kvec *out_iov, int *out_buftype) in ea_unsupported() 828 static inline void free_rsp_iov(struct kvec *iovs, int *buftype, int count) in free_rsp_iov() 845 struct kvec in_iov[3], out_iov[5] = {}; in smb2_query_path_info() [all …]
|
| H A D | smb1transport.c | 142 struct kvec iov[1]; in SendReceiveNoRsp() 143 struct kvec rsp_iov; in SendReceiveNoRsp() 165 struct kvec iov[1]; in cifs_check_receive() 211 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */, in SendReceive2() 212 const int flags, struct kvec *resp_iov) in SendReceive2() 229 struct kvec resp_iov = {}; in SendReceive() 230 struct kvec iov = { .iov_base = in_buf, .iov_len = in_len }; in SendReceive()
|
| H A D | smb2pdu.c | 1071 add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode) 1109 struct kvec iov[1]; in SMB2_negotiate() 1110 struct kvec rsp_iov; in SMB2_negotiate() 1545 struct kvec iov[2]; in SMB2_sess_alloc_buffer() 1626 struct kvec *iov = sess_data->iov; in SMB2_sess_sendreceive() 1642 struct kvec rsp_iov = { NULL, 0 }; in SMB2_sess_sendreceive() 1671 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec)); in SMB2_sess_establish_session() 2063 struct kvec iov[1]; in SMB2_logoff() 2064 struct kvec rsp_iov; in SMB2_logoff() 2137 struct kvec io in SMB2_tcon() [all...] |
| H A D | cifsglob.h | 257 struct kvec iov; 284 * formed by a kvec array, followed by an array of pages. Page data is assumed 288 struct kvec *rq_iov; /* array of kvecs */ 411 u32 *tag, struct kvec *rsp, 495 struct cifs_io_parms *, unsigned int *, struct kvec *, 626 struct reparse_data_buffer * (*get_reparse_point_buffer)(const struct kvec *rsp_iov, 634 struct kvec *reparse_iov, 635 struct kvec *xattr_iov); 1410 struct kvec *ea_cctx; 1501 struct kvec io [all...] |
| /linux/arch/s390/mm/ |
| H A D | maccess.c | 118 struct kvec kvec; in memcpy_real() local 120 kvec.iov_base = dest; in memcpy_real() 121 kvec.iov_len = count; in memcpy_real() 122 iov_iter_kvec(&iter, ITER_DEST, &kvec, 1, count); in memcpy_real()
|
| /linux/net/rxrpc/ |
| H A D | rxperf.c | 51 struct kvec kvec[1]; member 164 call->kvec[0].iov_len = sizeof(call->params); in rxperf_charge_preallocation() 165 call->kvec[0].iov_base = &call->params; in rxperf_charge_preallocation() 166 iov_iter_kvec(&call->iter, READ, call->kvec, 1, call->iov_len); in rxperf_charge_preallocation() 447 call->kvec[0].iov_len = call->iov_len; in rxperf_deliver_request() 448 call->kvec[0].iov_base = call->tmp; in rxperf_deliver_request() 449 iov_iter_kvec(&call->iter, READ, call->kvec, 1, call->iov_len); in rxperf_deliver_request() 492 call->kvec[0].iov_len = call->iov_len; in rxperf_deliver_request() 493 call->kvec[0].iov_base = call->tmp; in rxperf_deliver_request() 494 iov_iter_kvec(&call->iter, READ, call->kvec, 1, call->iov_len); in rxperf_deliver_request() [all …]
|
| H A D | output.c | 80 struct kvec *kv = call->local->kvec; in rxrpc_alloc_ack() 114 page_frag_free(call->local->kvec[0].iov_base); in rxrpc_free_ack() 115 if (call->local->kvec[1].iov_base) in rxrpc_free_ack() 116 page_frag_free(call->local->kvec[1].iov_base); in rxrpc_free_ack() 153 struct kvec *kv = call->local->kvec; in rxrpc_fill_out_ack() 246 struct kvec *kv = call->local->kvec; in rxrpc_send_ack_packet() 303 struct kvec *kv = call->local->kvec; in rxrpc_send_ACK() 367 struct kvec iov[1]; in rxrpc_send_abort_packet() 435 struct kvec *kv = &call->local->kvec[1 + subpkt]; in rxrpc_prepare_data_subpacket() 658 call->local->kvec[0].iov_base = whdr; in rxrpc_send_data_packet() [all …]
|
| /linux/arch/x86/kernel/ |
| H A D | crash_dump_64.c | 57 struct kvec kvec = { .iov_base = buf, .iov_len = count }; in elfcorehdr_read() local 60 iov_iter_kvec(&iter, ITER_DEST, &kvec, 1, count); in elfcorehdr_read()
|
| /linux/lib/tests/ |
| H A D | kunit_iov_iter.c | 95 struct kvec *kvec, unsigned int kvmax, in iov_kunit_load_kvec() 107 kvec[i].iov_base = buffer + pr->from; 108 kvec[i].iov_len = pr->to - pr->from; 113 iov_iter_kvec(iter, dir, kvec, i, size); in iov_kunit_copy_to_kvec() 124 struct kvec kvec[8]; in iov_kunit_copy_to_kvec() 139 iov_kunit_load_kvec(test, &iter, READ, kvec, ARRAY_SIZE(kvec), in iov_kunit_copy_to_kvec() 174 struct kvec kve in iov_kunit_copy_from_kvec() 87 iov_kunit_load_kvec(struct kunit * test,struct iov_iter * iter,int dir,struct kvec * kvec,unsigned int kvmax,void * buffer,size_t bufsize,const struct kvec_test_range * pr) iov_kunit_load_kvec() argument 116 struct kvec kvec[8]; iov_kunit_copy_to_kvec() local 166 struct kvec kvec[8]; iov_kunit_copy_from_kvec() local 713 struct kvec kvec[8]; iov_kunit_extract_pages_kvec() local 1128 struct kvec kvec; iov_kunit_iter_to_sg_kvec() local [all...] |
| /linux/net/handshake/ |
| H A D | alert.c | 40 struct kvec iov; in tls_alert_send() 100 const struct kvec *iov; in tls_alert_recv() 103 iov = msg->msg_iter.kvec; in tls_alert_recv()
|
| /linux/include/linux/ceph/ |
| H A D | messenger.h | 272 struct kvec front; /* unaligned blobs of message */ 326 struct kvec out_kvec[8], /* sending header/footer data */ 347 struct kvec in_sr_kvec; /* current location to receive into */ 397 struct kvec in_kvecs[5]; /* recvmsg */ 403 struct kvec out_kvecs[8]; /* sendmsg */ 439 struct kvec in_sign_kvecs[8]; 440 struct kvec out_sign_kvecs[8];
|
| /linux/net/sunrpc/ |
| H A D | xdr.c | 151 const struct kvec *head = xdr->head; in xdr_buf_to_bvec() 152 const struct kvec *tail = xdr->tail; in xdr_buf_to_bvec() 407 struct kvec *head = xdr->head; 408 struct kvec *tail = xdr->tail; 651 static void xdr_buf_iov_zero(const struct kvec *iov, unsigned int base, in xdr_buf_tail_shift_right() 737 struct kvec *head = buf->head; in xdr_buf_tail_copy_left() 738 struct kvec *tail = buf->tail; in xdr_buf_tail_copy_left() 765 const struct kvec *tail = buf->tail; in xdr_buf_pages_copy_left() 779 const struct kvec *tail = buf->tail; in xdr_buf_tail_shift_left() 812 const struct kvec *hea in xdr_buf_head_shift_left() [all...] |
| /linux/fs/jffs2/ |
| H A D | writev.c | 16 int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct kvec *vecs, in jffs2_flash_direct_writev() 39 struct kvec vecs[1]; in jffs2_flash_direct_write()
|
| /linux/fs/smb/server/ |
| H A D | ksmbd_work.c | 31 work->iov = kzalloc_objs(struct kvec, work->iov_alloc_cnt, in ksmbd_alloc_work_struct() 121 struct kvec *new; in __ksmbd_iov_pin_rsp() 125 sizeof(struct kvec) * work->iov_alloc_cnt, in __ksmbd_iov_pin_rsp()
|
| /linux/include/linux/ |
| H A D | vringh.h | 117 struct kvec *iov; 192 struct kvec *kvec, unsigned num) in vringh_kiov_init() argument 197 kiov->iov = kvec; in vringh_kiov_init()
|
| /linux/include/crypto/internal/ |
| H A D | kdf_selftest.h | 18 struct kvec info; 29 const struct kvec *info, in kdf_test()
|
| /linux/drivers/net/ethernet/intel/idpf/ |
| H A D | idpf_virtchnl.h | 64 struct kvec reply; 83 struct kvec send_buf; 84 struct kvec recv_buf;
|
| /linux/net/qrtr/ |
| H A D | ns.c | 134 struct kvec iv; 160 struct kvec iv; in service_announce_del() 191 struct kvec iv; in lookup_notify() 333 struct kvec iv; 373 struct kvec iv; in ctrl_cmd_bye() 437 struct kvec iv; in ctrl_cmd_del_client() 646 struct kvec iv; in qrtr_ns_worker()
|
| /linux/drivers/xen/xenbus/ |
| H A D | xenbus_xs.c | 294 struct kvec *vec; in xenbus_dev_request_and_reply() 300 vec = (struct kvec *)(req + 1); in xenbus_dev_request_and_reply() 320 const struct kvec *iovec, in xs_talkv() 377 struct kvec iovec; in xs_single() 500 struct kvec iovec[2]; in xenbus_write() 654 struct kvec iov[2]; in xs_watch() 667 struct kvec iov[2]; in xs_unwatch()
|
| /linux/drivers/target/iscsi/ |
| H A D | iscsi_target_util.h | 63 extern int rx_data(struct iscsit_conn *, struct kvec *, int, int); 64 extern int tx_data(struct iscsit_conn *, struct kvec *, int, int);
|