Home
last modified time | relevance | path

Searched full:body (Results 1 – 25 of 809) sorted by relevance

12345678910>>...33

/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
Duprobe_multi.c15 #define F(body, name, idx) body(name, idx) argument
17 #define F10(body, name, idx) \ argument
18 F(body, PASTE(name, idx), 0) F(body, PASTE(name, idx), 1) F(body, PASTE(name, idx), 2) \
19 F(body, PASTE(name, idx), 3) F(body, PASTE(name, idx), 4) F(body, PASTE(name, idx), 5) \
20 F(body, PASTE(name, idx), 6) F(body, PASTE(name, idx), 7) F(body, PASTE(name, idx), 8) \
21 F(body, PASTE(name, idx), 9)
23 #define F100(body, name, idx) \ argument
24 F10(body, PASTE(name, idx), 0) F10(body, PASTE(name, idx), 1) F10(body, PASTE(name, idx), 2) \
25 F10(body, PASTE(name, idx), 3) F10(body, PASTE(name, idx), 4) F10(body, PASTE(name, idx), 5) \
26 F10(body, PASTE(name, idx), 6) F10(body, PASTE(name, idx), 7) F10(body, PASTE(name, idx), 8) \
[all …]
/kernel/linux/linux-5.10/drivers/staging/wfx/
Dhif_tx.c44 return (*hif)->body; in wfx_alloc_hif()
147 struct hif_req_configuration *body = wfx_alloc_hif(buf_len, &hif); in hif_configuration() local
151 body->length = cpu_to_le16(len); in hif_configuration()
152 memcpy(body->pds_data, conf, len); in hif_configuration()
163 struct hif_req_reset *body = wfx_alloc_hif(sizeof(*body), &hif); in hif_reset() local
167 body->reset_stat = reset_stat; in hif_reset()
168 wfx_fill_header(hif, wvif->id, HIF_REQ_ID_RESET, sizeof(*body)); in hif_reset()
180 struct hif_req_read_mib *body = wfx_alloc_hif(sizeof(*body), &hif); in hif_read_mib() local
183 if (!body || !reply) { in hif_read_mib()
187 body->mib_id = cpu_to_le16(mib_id); in hif_read_mib()
[all …]
Dhif_rx.c57 const struct hif_cnf_tx *body = buf; in hif_tx_confirm() local
59 wfx_tx_confirm_cb(wdev, body); in hif_tx_confirm()
66 const struct hif_cnf_multi_transmit *body = buf; in hif_multi_tx_confirm() local
69 WARN(body->num_tx_confs <= 0, "corrupted message"); in hif_multi_tx_confirm()
70 for (i = 0; i < body->num_tx_confs; i++) in hif_multi_tx_confirm()
71 wfx_tx_confirm_cb(wdev, &body->tx_conf_payload[i]); in hif_multi_tx_confirm()
78 const struct hif_ind_startup *body = buf; in hif_startup_indication() local
80 if (body->status || body->firmware_type > 4) { in hif_startup_indication()
84 memcpy(&wdev->hw_caps, body, sizeof(struct hif_ind_startup)); in hif_startup_indication()
110 const struct hif_ind_rx *body = buf; in hif_receive_indication() local
[all …]
/kernel/linux/linux-6.6/drivers/net/wireless/silabs/wfx/
Dhif_tx.c43 return (*hif)->body; in wfx_alloc_hif()
145 struct wfx_hif_req_configuration *body = wfx_alloc_hif(buf_len, &hif); in wfx_hif_configuration() local
149 body->length = cpu_to_le16(len); in wfx_hif_configuration()
150 memcpy(body->pds_data, conf, len); in wfx_hif_configuration()
161 struct wfx_hif_req_reset *body = wfx_alloc_hif(sizeof(*body), &hif); in wfx_hif_reset() local
165 body->reset_stat = reset_stat; in wfx_hif_reset()
166 wfx_fill_header(hif, wvif->id, HIF_REQ_ID_RESET, sizeof(*body)); in wfx_hif_reset()
177 struct wfx_hif_req_read_mib *body = wfx_alloc_hif(sizeof(*body), &hif); in wfx_hif_read_mib() local
180 if (!body || !reply) { in wfx_hif_read_mib()
184 body->mib_id = cpu_to_le16(mib_id); in wfx_hif_read_mib()
[all …]
Dhif_rx.c55 const struct wfx_hif_cnf_tx *body = buf; in wfx_hif_tx_confirm() local
57 wfx_tx_confirm_cb(wdev, body); in wfx_hif_tx_confirm()
64 const struct wfx_hif_cnf_multi_transmit *body = buf; in wfx_hif_multi_tx_confirm() local
67 WARN(body->num_tx_confs <= 0, "corrupted message"); in wfx_hif_multi_tx_confirm()
68 for (i = 0; i < body->num_tx_confs; i++) in wfx_hif_multi_tx_confirm()
69 wfx_tx_confirm_cb(wdev, &body->tx_conf_payload[i]); in wfx_hif_multi_tx_confirm()
76 const struct wfx_hif_ind_startup *body = buf; in wfx_hif_startup_indication() local
78 if (body->status || body->firmware_type > 4) { in wfx_hif_startup_indication()
82 memcpy(&wdev->hw_caps, body, sizeof(struct wfx_hif_ind_startup)); in wfx_hif_startup_indication()
101 const struct wfx_hif_ind_rx *body = buf; in wfx_hif_receive_indication() local
[all …]
/kernel/linux/linux-6.6/drivers/media/usb/as102/
Das10x_cmd.c28 sizeof(pcmd->body.turn_on.req)); in as10x_cmd_turn_on()
31 pcmd->body.turn_on.req.proc_id = cpu_to_le16(CONTROL_PROC_TURNON); in as10x_cmd_turn_on()
36 sizeof(pcmd->body.turn_on.req) + in as10x_cmd_turn_on()
39 sizeof(prsp->body.turn_on.rsp) + in as10x_cmd_turn_on()
69 sizeof(pcmd->body.turn_off.req)); in as10x_cmd_turn_off()
72 pcmd->body.turn_off.req.proc_id = cpu_to_le16(CONTROL_PROC_TURNOFF); in as10x_cmd_turn_off()
78 sizeof(pcmd->body.turn_off.req) + HEADER_SIZE, in as10x_cmd_turn_off()
80 sizeof(prsp->body.turn_off.rsp) + HEADER_SIZE); in as10x_cmd_turn_off()
111 sizeof(preq->body.set_tune.req)); in as10x_cmd_set_tune()
114 preq->body.set_tune.req.proc_id = cpu_to_le16(CONTROL_PROC_SETTUNE); in as10x_cmd_set_tune()
[all …]
Das10x_cmd_stream.c29 sizeof(pcmd->body.add_pid_filter.req)); in as10x_cmd_add_PID_filter()
32 pcmd->body.add_pid_filter.req.proc_id = in as10x_cmd_add_PID_filter()
34 pcmd->body.add_pid_filter.req.pid = cpu_to_le16(filter->pid); in as10x_cmd_add_PID_filter()
35 pcmd->body.add_pid_filter.req.stream_type = filter->type; in as10x_cmd_add_PID_filter()
38 pcmd->body.add_pid_filter.req.idx = filter->idx; in as10x_cmd_add_PID_filter()
40 pcmd->body.add_pid_filter.req.idx = 0xFF; in as10x_cmd_add_PID_filter()
45 sizeof(pcmd->body.add_pid_filter.req) in as10x_cmd_add_PID_filter()
47 sizeof(prsp->body.add_pid_filter.rsp) in as10x_cmd_add_PID_filter()
61 filter->idx = prsp->body.add_pid_filter.rsp.filter_id; in as10x_cmd_add_PID_filter()
86 sizeof(pcmd->body.del_pid_filter.req)); in as10x_cmd_del_PID_filter()
[all …]
Das10x_cmd_cfg.c34 sizeof(pcmd->body.context.req)); in as10x_cmd_get_context()
37 pcmd->body.context.req.proc_id = cpu_to_le16(CONTROL_PROC_CONTEXT); in as10x_cmd_get_context()
38 pcmd->body.context.req.tag = cpu_to_le16(tag); in as10x_cmd_get_context()
39 pcmd->body.context.req.type = cpu_to_le16(GET_CONTEXT_DATA); in as10x_cmd_get_context()
45 sizeof(pcmd->body.context.req) in as10x_cmd_get_context()
48 sizeof(prsp->body.context.rsp) in as10x_cmd_get_context()
63 *pvalue = le32_to_cpu((__force __le32)prsp->body.context.rsp.reg_val.u.value32); in as10x_cmd_get_context()
90 sizeof(pcmd->body.context.req)); in as10x_cmd_set_context()
93 pcmd->body.context.req.proc_id = cpu_to_le16(CONTROL_PROC_CONTEXT); in as10x_cmd_set_context()
94 /* pcmd->body.context.req.reg_val.mode initialization is not required */ in as10x_cmd_set_context()
[all …]
/kernel/linux/linux-5.10/drivers/media/usb/as102/
Das10x_cmd.c28 sizeof(pcmd->body.turn_on.req)); in as10x_cmd_turn_on()
31 pcmd->body.turn_on.req.proc_id = cpu_to_le16(CONTROL_PROC_TURNON); in as10x_cmd_turn_on()
36 sizeof(pcmd->body.turn_on.req) + in as10x_cmd_turn_on()
39 sizeof(prsp->body.turn_on.rsp) + in as10x_cmd_turn_on()
69 sizeof(pcmd->body.turn_off.req)); in as10x_cmd_turn_off()
72 pcmd->body.turn_off.req.proc_id = cpu_to_le16(CONTROL_PROC_TURNOFF); in as10x_cmd_turn_off()
78 sizeof(pcmd->body.turn_off.req) + HEADER_SIZE, in as10x_cmd_turn_off()
80 sizeof(prsp->body.turn_off.rsp) + HEADER_SIZE); in as10x_cmd_turn_off()
111 sizeof(preq->body.set_tune.req)); in as10x_cmd_set_tune()
114 preq->body.set_tune.req.proc_id = cpu_to_le16(CONTROL_PROC_SETTUNE); in as10x_cmd_set_tune()
[all …]
Das10x_cmd_stream.c29 sizeof(pcmd->body.add_pid_filter.req)); in as10x_cmd_add_PID_filter()
32 pcmd->body.add_pid_filter.req.proc_id = in as10x_cmd_add_PID_filter()
34 pcmd->body.add_pid_filter.req.pid = cpu_to_le16(filter->pid); in as10x_cmd_add_PID_filter()
35 pcmd->body.add_pid_filter.req.stream_type = filter->type; in as10x_cmd_add_PID_filter()
38 pcmd->body.add_pid_filter.req.idx = filter->idx; in as10x_cmd_add_PID_filter()
40 pcmd->body.add_pid_filter.req.idx = 0xFF; in as10x_cmd_add_PID_filter()
45 sizeof(pcmd->body.add_pid_filter.req) in as10x_cmd_add_PID_filter()
47 sizeof(prsp->body.add_pid_filter.rsp) in as10x_cmd_add_PID_filter()
61 filter->idx = prsp->body.add_pid_filter.rsp.filter_id; in as10x_cmd_add_PID_filter()
86 sizeof(pcmd->body.del_pid_filter.req)); in as10x_cmd_del_PID_filter()
[all …]
Das10x_cmd_cfg.c34 sizeof(pcmd->body.context.req)); in as10x_cmd_get_context()
37 pcmd->body.context.req.proc_id = cpu_to_le16(CONTROL_PROC_CONTEXT); in as10x_cmd_get_context()
38 pcmd->body.context.req.tag = cpu_to_le16(tag); in as10x_cmd_get_context()
39 pcmd->body.context.req.type = cpu_to_le16(GET_CONTEXT_DATA); in as10x_cmd_get_context()
45 sizeof(pcmd->body.context.req) in as10x_cmd_get_context()
48 sizeof(prsp->body.context.rsp) in as10x_cmd_get_context()
63 *pvalue = le32_to_cpu((__force __le32)prsp->body.context.rsp.reg_val.u.value32); in as10x_cmd_get_context()
90 sizeof(pcmd->body.context.req)); in as10x_cmd_set_context()
93 pcmd->body.context.req.proc_id = cpu_to_le16(CONTROL_PROC_CONTEXT); in as10x_cmd_set_context()
94 /* pcmd->body.context.req.reg_val.mode initialization is not required */ in as10x_cmd_set_context()
[all …]
/kernel/linux/linux-6.6/drivers/hv/
Dhv_kvp.c140 version = kvp_msg->body.kvp_register.version; in kvp_register()
228 data = &message->body.kvp_enum_data; in kvp_on_msg()
272 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.ip_addr, in process_ob_ipinfo()
273 strlen((char *)in->body.kvp_ip_val.ip_addr), in process_ob_ipinfo()
280 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.sub_net, in process_ob_ipinfo()
281 strlen((char *)in->body.kvp_ip_val.sub_net), in process_ob_ipinfo()
288 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.gate_way, in process_ob_ipinfo()
289 strlen((char *)in->body.kvp_ip_val.gate_way), in process_ob_ipinfo()
296 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.dns_addr, in process_ob_ipinfo()
297 strlen((char *)in->body.kvp_ip_val.dns_addr), in process_ob_ipinfo()
[all …]
/kernel/linux/linux-5.10/drivers/hv/
Dhv_kvp.c140 version = kvp_msg->body.kvp_register.version; in kvp_register()
228 data = &message->body.kvp_enum_data; in kvp_on_msg()
272 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.ip_addr, in process_ob_ipinfo()
273 strlen((char *)in->body.kvp_ip_val.ip_addr), in process_ob_ipinfo()
280 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.sub_net, in process_ob_ipinfo()
281 strlen((char *)in->body.kvp_ip_val.sub_net), in process_ob_ipinfo()
288 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.gate_way, in process_ob_ipinfo()
289 strlen((char *)in->body.kvp_ip_val.gate_way), in process_ob_ipinfo()
296 len = utf8s_to_utf16s((char *)in->body.kvp_ip_val.dns_addr, in process_ob_ipinfo()
297 strlen((char *)in->body.kvp_ip_val.dns_addr), in process_ob_ipinfo()
[all …]
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/
Dvmwgfx_surface.c167 SVGA3dCmdSurfaceDMA body; member
177 SVGA3dCmdDefineSurface body; member
185 SVGA3dCmdDestroySurface body; member
242 cmd->header.size = sizeof(cmd->body); in vmw_surface_destroy_encode()
243 cmd->body.sid = id; in vmw_surface_destroy_encode()
262 cmd_len = sizeof(cmd->body) + srf->metadata.num_sizes * in vmw_surface_define_encode()
267 cmd->body.sid = srf->res.id; in vmw_surface_define_encode()
273 cmd->body.surfaceFlags = (SVGA3dSurface1Flags)srf->metadata.flags; in vmw_surface_define_encode()
274 cmd->body.format = srf->metadata.format; in vmw_surface_define_encode()
276 cmd->body.face[i].numMipLevels = srf->metadata.mip_levels[i]; in vmw_surface_define_encode()
[all …]
Dvmwgfx_context.c147 SVGA3dCmdDestroyContext body; in vmw_hw_context_destroy() member
173 cmd->header.size = sizeof(cmd->body); in vmw_hw_context_destroy()
174 cmd->body.cid = res->id; in vmw_hw_context_destroy()
250 SVGA3dCmdDefineContext body; in vmw_context_init() member
277 cmd->header.size = sizeof(cmd->body); in vmw_context_init()
278 cmd->body.cid = res->id; in vmw_context_init()
304 SVGA3dCmdDefineGBContext body; in vmw_gb_context_create() member
328 cmd->header.size = sizeof(cmd->body); in vmw_gb_context_create()
329 cmd->body.cid = res->id; in vmw_gb_context_create()
347 SVGA3dCmdBindGBContext body; in vmw_gb_context_bind() member
[all …]
Dvmwgfx_scrn.c68 SVGAFifoCmdBlitScreenToGMRFB body; member
73 SVGAFifoCmdBlitGMRFBToScreen body; member
78 SVGA3dCmdBlitSurfaceToScreen body; member
83 SVGAFifoCmdDefineGMRFB body; member
175 SVGAFifoCmdDestroyScreen body; in vmw_sou_fifo_destroy() member
189 cmd->body.screenId = sou->base.unit; in vmw_sou_fifo_destroy()
489 gmr->body.format.bitsPerPixel = update->vfb->base.format->cpp[0] * 8; in vmw_sou_bo_define_gmrfb()
490 gmr->body.format.colorDepth = depth; in vmw_sou_bo_define_gmrfb()
491 gmr->body.format.reserved = 0; in vmw_sou_bo_define_gmrfb()
492 gmr->body.bytesPerLine = update->vfb->base.pitches[0]; in vmw_sou_bo_define_gmrfb()
[all …]
Dvmwgfx_execbuf.c55 __type body; \
723 cmd->header.size = sizeof(cmd->body); in vmw_rebind_all_dx_query()
724 cmd->body.cid = ctx_res->id; in vmw_rebind_all_dx_query()
725 cmd->body.mobid = dx_query_mob->tbo.resource->start; in vmw_rebind_all_dx_query()
832 &cmd->body, NULL); in vmw_cmd_cid_check()
874 if (cmd->body.type >= SVGA3D_RT_MAX) { in vmw_cmd_set_render_target_check()
876 (unsigned int) cmd->body.type); in vmw_cmd_set_render_target_check()
882 &cmd->body.cid, &ctx); in vmw_cmd_set_render_target_check()
888 &cmd->body.target.sid, &res); in vmw_cmd_set_render_target_check()
903 binding.slot = cmd->body.type; in vmw_cmd_set_render_target_check()
[all …]
Dvmwgfx_binding.c578 SVGA3dCmdSetShader body; in vmw_binding_scrub_shader() member
586 cmd->header.size = sizeof(cmd->body); in vmw_binding_scrub_shader()
587 cmd->body.cid = bi->ctx->id; in vmw_binding_scrub_shader()
588 cmd->body.type = binding->shader_slot + SVGA3D_SHADERTYPE_MIN; in vmw_binding_scrub_shader()
589 cmd->body.shid = ((rebind) ? bi->res->id : SVGA3D_INVALID_ID); in vmw_binding_scrub_shader()
610 SVGA3dCmdSetRenderTarget body; in vmw_binding_scrub_render_target() member
618 cmd->header.size = sizeof(cmd->body); in vmw_binding_scrub_render_target()
619 cmd->body.cid = bi->ctx->id; in vmw_binding_scrub_render_target()
620 cmd->body.type = binding->slot; in vmw_binding_scrub_render_target()
621 cmd->body.target.sid = ((rebind) ? bi->res->id : SVGA3D_INVALID_ID); in vmw_binding_scrub_render_target()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/
Dvmwgfx_surface.c170 SVGA3dCmdSurfaceDMA body; member
180 SVGA3dCmdDefineSurface body; member
188 SVGA3dCmdDestroySurface body; member
245 cmd->header.size = sizeof(cmd->body); in vmw_surface_destroy_encode()
246 cmd->body.sid = id; in vmw_surface_destroy_encode()
265 cmd_len = sizeof(cmd->body) + srf->metadata.num_sizes * in vmw_surface_define_encode()
270 cmd->body.sid = srf->res.id; in vmw_surface_define_encode()
276 cmd->body.surfaceFlags = (SVGA3dSurface1Flags)srf->metadata.flags; in vmw_surface_define_encode()
277 cmd->body.format = srf->metadata.format; in vmw_surface_define_encode()
279 cmd->body.face[i].numMipLevels = srf->metadata.mip_levels[i]; in vmw_surface_define_encode()
[all …]
Dvmwgfx_scrn.c69 SVGAFifoCmdBlitScreenToGMRFB body; member
74 SVGAFifoCmdBlitGMRFBToScreen body; member
79 SVGA3dCmdBlitSurfaceToScreen body; member
84 SVGAFifoCmdDefineGMRFB body; member
176 SVGAFifoCmdDestroyScreen body; in vmw_sou_fifo_destroy() member
190 cmd->body.screenId = sou->base.unit; in vmw_sou_fifo_destroy()
495 gmr->body.format.bitsPerPixel = update->vfb->base.format->cpp[0] * 8; in vmw_sou_bo_define_gmrfb()
496 gmr->body.format.colorDepth = depth; in vmw_sou_bo_define_gmrfb()
497 gmr->body.format.reserved = 0; in vmw_sou_bo_define_gmrfb()
498 gmr->body.bytesPerLine = update->vfb->base.pitches[0]; in vmw_sou_bo_define_gmrfb()
[all …]
Dvmwgfx_context.c145 SVGA3dCmdDestroyContext body; in vmw_hw_context_destroy() member
171 cmd->header.size = sizeof(cmd->body); in vmw_hw_context_destroy()
172 cmd->body.cid = res->id; in vmw_hw_context_destroy()
248 SVGA3dCmdDefineContext body; in vmw_context_init() member
275 cmd->header.size = sizeof(cmd->body); in vmw_context_init()
276 cmd->body.cid = res->id; in vmw_context_init()
302 SVGA3dCmdDefineGBContext body; in vmw_gb_context_create() member
326 cmd->header.size = sizeof(cmd->body); in vmw_gb_context_create()
327 cmd->body.cid = res->id; in vmw_gb_context_create()
345 SVGA3dCmdBindGBContext body; in vmw_gb_context_bind() member
[all …]
Dvmwgfx_execbuf.c54 __type body; \
732 cmd->header.size = sizeof(cmd->body); in vmw_rebind_all_dx_query()
733 cmd->body.cid = ctx_res->id; in vmw_rebind_all_dx_query()
734 cmd->body.mobid = dx_query_mob->base.mem.start; in vmw_rebind_all_dx_query()
841 &cmd->body, NULL); in vmw_cmd_cid_check()
883 if (cmd->body.type >= SVGA3D_RT_MAX) { in vmw_cmd_set_render_target_check()
885 (unsigned int) cmd->body.type); in vmw_cmd_set_render_target_check()
891 &cmd->body.cid, &ctx); in vmw_cmd_set_render_target_check()
897 &cmd->body.target.sid, &res); in vmw_cmd_set_render_target_check()
912 binding.slot = cmd->body.type; in vmw_cmd_set_render_target_check()
[all …]
Dvmwgfx_binding.c555 SVGA3dCmdSetShader body; in vmw_binding_scrub_shader() member
563 cmd->header.size = sizeof(cmd->body); in vmw_binding_scrub_shader()
564 cmd->body.cid = bi->ctx->id; in vmw_binding_scrub_shader()
565 cmd->body.type = binding->shader_slot + SVGA3D_SHADERTYPE_MIN; in vmw_binding_scrub_shader()
566 cmd->body.shid = ((rebind) ? bi->res->id : SVGA3D_INVALID_ID); in vmw_binding_scrub_shader()
587 SVGA3dCmdSetRenderTarget body; in vmw_binding_scrub_render_target() member
595 cmd->header.size = sizeof(cmd->body); in vmw_binding_scrub_render_target()
596 cmd->body.cid = bi->ctx->id; in vmw_binding_scrub_render_target()
597 cmd->body.type = binding->slot; in vmw_binding_scrub_render_target()
598 cmd->body.target.sid = ((rebind) ? bi->res->id : SVGA3D_INVALID_ID); in vmw_binding_scrub_render_target()
[all …]
/kernel/linux/linux-5.10/fs/reiserfs/
Ddo_balan.c288 const char * const body) in balance_leaf_insert_left() argument
313 leaf_insert_into_buf(&bi, n + tb->item_pos - ret, ih, body, in balance_leaf_insert_left()
317 * Calculate key component, item length and body to in balance_leaf_insert_left()
343 leaf_insert_into_buf(&bi, n + tb->item_pos - ret, ih, body, in balance_leaf_insert_left()
353 const char * const body) in balance_leaf_paste_left_shift_dirent() argument
382 body, tb->zeroes_num); in balance_leaf_paste_left_shift_dirent()
397 (struct reiserfs_de_head *) body, in balance_leaf_paste_left_shift_dirent()
398 body + DEH_SIZE, tb->insert_size[0]); in balance_leaf_paste_left_shift_dirent()
409 /* Calculate new position to append in item body */ in balance_leaf_paste_left_shift_dirent()
415 const char * const body) in balance_leaf_paste_left_shift() argument
[all …]
/kernel/linux/linux-6.6/fs/reiserfs/
Ddo_balan.c288 const char * const body) in balance_leaf_insert_left() argument
313 leaf_insert_into_buf(&bi, n + tb->item_pos - ret, ih, body, in balance_leaf_insert_left()
317 * Calculate key component, item length and body to in balance_leaf_insert_left()
343 leaf_insert_into_buf(&bi, n + tb->item_pos - ret, ih, body, in balance_leaf_insert_left()
353 const char * const body) in balance_leaf_paste_left_shift_dirent() argument
382 body, tb->zeroes_num); in balance_leaf_paste_left_shift_dirent()
397 (struct reiserfs_de_head *) body, in balance_leaf_paste_left_shift_dirent()
398 body + DEH_SIZE, tb->insert_size[0]); in balance_leaf_paste_left_shift_dirent()
409 /* Calculate new position to append in item body */ in balance_leaf_paste_left_shift_dirent()
415 const char * const body) in balance_leaf_paste_left_shift() argument
[all …]

12345678910>>...33