D | storage.c | 150 struct iovec rx[2] = {{&msg, sizeof(msg)}, {&rsp, sizeof(rsp)}}; in storage_open_file() local 152 ssize_t rc = send_reqv(session, tx, 3, rx, 2); in storage_open_file() 171 struct iovec rx[1] = {{&msg, sizeof(msg)}}; in storage_close_file() local 173 ssize_t rc = send_reqv(_to_session(fh), tx, 2, rx, 1); in storage_close_file() 185 struct iovec rx[1] = {{&msg, sizeof(msg)}}; in storage_delete_file() local 187 ssize_t rc = send_reqv(session, tx, 3, rx, 1); in storage_delete_file() 196 struct iovec rx[2] = {{&msg, sizeof(msg)}, {buf, size}}; in _read_chunk() local 198 ssize_t rc = send_reqv(_to_session(fh), tx, 2, rx, 2); in _read_chunk() 231 struct iovec rx[1] = {{&msg, sizeof(msg)}}; in _write_req() local 233 ssize_t rc = send_reqv(_to_session(fh), tx, 3, rx, 1); in _write_req() [all …]
|