Home
last modified time | relevance | path

Searched refs:smallbuf (Results 1 – 5 of 5) sorted by relevance

/openbmc/linux/drivers/usb/core/
H A Dmessage.c1022 char *smallbuf = NULL; in usb_cache_string() local
1032 smallbuf = kmalloc(++len, GFP_NOIO); in usb_cache_string()
1033 if (!smallbuf) in usb_cache_string()
1035 memcpy(smallbuf, buf, len); in usb_cache_string()
1039 return smallbuf; in usb_cache_string()
/openbmc/linux/fs/smb/client/
H A Dtransport.c1687 mid->resp_buf = server->smallbuf; in __cifs_readv_discard()
1688 server->smallbuf = NULL; in __cifs_readv_discard()
1706 char *buf = server->smallbuf; in cifs_readv_receive()
1830 mid->resp_buf = server->smallbuf; in cifs_readv_receive()
1831 server->smallbuf = NULL; in cifs_readv_receive()
H A Dconnect.c639 if (!server->smallbuf) { in allocate_buffers()
640 server->smallbuf = (char *)cifs_small_buf_get(); in allocate_buffers()
641 if (!server->smallbuf) { in allocate_buffers()
650 memset(server->smallbuf, 0, HEADER_SIZE(server)); in allocate_buffers()
909 server->smallbuf = NULL; in handle_mid()
1057 char *buf = server->smallbuf; in standard_receive3()
1091 char *buf = server->large_buf ? server->bigbuf : server->smallbuf; in cifs_handle_standard()
1185 buf = server->smallbuf; in cifs_demultiplex_thread()
1325 buf = server->smallbuf; in cifs_demultiplex_thread()
1337 if (server->smallbuf) /* no sense logging a debug message if NULL */ in cifs_demultiplex_thread()
[all …]
H A Dsmb2ops.c4700 char *buf = server->smallbuf; in receive_encrypted_read()
4771 dw->buf = server->smallbuf; in receive_encrypted_read()
4772 server->smallbuf = (char *)cifs_small_buf_get(); in receive_encrypted_read()
4817 char *buf = server->smallbuf; in receive_encrypted_standard()
4888 server->smallbuf = buf = next_buffer; in receive_encrypted_standard()
4910 char *buf = server->smallbuf; in smb3_receive_transform()
4940 char *buf = server->large_buf ? server->bigbuf : server->smallbuf; in smb3_handle_read_data()
H A Dcifsglob.h757 char *smallbuf; /* pointer to current "small" buffer */ member