/kernel/linux/linux-6.6/net/batman-adv/ |
H A D | types.h | 2340 u8 *src, u8 *dst,
|
/kernel/linux/linux-6.6/net/ipv4/ |
H A D | ip_fragment.c | 40 #include <net/dst.h> 176 /* skb has no dst, perform route lookup again */ in ip_expire()
|
/kernel/linux/linux-6.6/sound/soc/intel/atom/sst/ |
H A D | sst.c | 372 kfree(ctx->fw_sg_list.dst); in sst_context_cleanup()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/ibm/ |
H A D | ibmvnic.c | 769 unsigned char *dst; in replenish_rx_pool() local 810 dst = ltb->buff + offset; in replenish_rx_pool() 811 memset(dst, 0, pool->buff_size); in replenish_rx_pool() 815 pool->rx_buff[bufidx].data = dst; in replenish_rx_pool() 2401 unsigned char *dst; in ibmvnic_xmit() local 2451 dst = ltb->buff + offset; in ibmvnic_xmit() 2452 memset(dst, 0, tx_pool->buf_size); in ibmvnic_xmit() 2459 skb_copy_from_linear_data(skb, dst, skb_headlen(skb)); in ibmvnic_xmit() 2466 memcpy(dst + cur, skb_frag_address(frag), in ibmvnic_xmit() 2471 skb_copy_from_linear_data(skb, dst, sk in ibmvnic_xmit() [all...] |
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | aesni-intel_asm.S | 1944 * void aesni_enc(const void *ctx, u8 *dst, const u8 *src) 1952 movl (FRAME_OFFSET+16)(%esp), OUTP # dst 2133 * void aesni_dec (const void *ctx, u8 *dst, const u8 *src) 2141 movl (FRAME_OFFSET+16)(%esp), OUTP # dst 2323 * void aesni_ecb_enc(struct crypto_aes_ctx *ctx, const u8 *dst, u8 *src, 2333 movl (FRAME_OFFSET+20)(%esp), OUTP # dst 2383 * void aesni_ecb_dec(struct crypto_aes_ctx *ctx, const u8 *dst, u8 *src, 2393 movl (FRAME_OFFSET+20)(%esp), OUTP # dst 2444 * void aesni_cbc_enc(struct crypto_aes_ctx *ctx, const u8 *dst, u8 *src, 2455 movl (FRAME_OFFSET+24)(%esp), OUTP # dst [all...] |
/kernel/linux/linux-5.10/drivers/misc/habanalabs/goya/ |
H A D | goya.c | 2314 void __iomem *dst; in goya_load_firmware_to_device() local 2316 dst = hdev->pcie_bar[DDR_BAR_ID] + LINUX_FW_OFFSET; in goya_load_firmware_to_device() 2318 return hl_fw_load_fw_to_device(hdev, GOYA_LINUX_FW_FILE, dst); in goya_load_firmware_to_device() 2331 void __iomem *dst; in goya_load_boot_fit_to_device() local 2333 dst = hdev->pcie_bar[SRAM_CFG_BAR_ID] + BOOT_FIT_SRAM_OFFSET; in goya_load_boot_fit_to_device() 2335 return hl_fw_load_fw_to_device(hdev, GOYA_BOOT_FIT_FILE, dst); in goya_load_boot_fit_to_device()
|
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | ncr53c8xx.c | 1929 (struct ncb *np, ncrcmd *src, ncrcmd *dst, int len); 3512 ncr_script_copy_and_bind (struct ncb *np, ncrcmd *src, ncrcmd *dst, int len) in ncr_script_copy_and_bind() argument 3525 *dst++ = cpu_to_scr(opcode); in ncr_script_copy_and_bind() 3574 dst[-1] = cpu_to_scr(opcode & ~SCR_NO_FLUSH); in ncr_script_copy_and_bind() 3649 *dst++ = cpu_to_scr(new); in ncr_script_copy_and_bind() 3652 *dst++ = cpu_to_scr(*src++); in ncr_script_copy_and_bind()
|
/kernel/linux/linux-5.10/fs/f2fs/ |
H A D | segment.c | 2566 struct f2fs_summary_block *dst; in write_current_sum_page() local 2568 dst = (struct f2fs_summary_block *)page_address(page); in write_current_sum_page() 2569 memset(dst, 0, PAGE_SIZE); in write_current_sum_page() 2574 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE); in write_current_sum_page() 2577 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE); in write_current_sum_page() 2578 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE); in write_current_sum_page()
|
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | connect.c | 1253 char *dst, *delim; in extract_hostname() local 1271 dst = kmalloc((len + 1), GFP_KERNEL); in extract_hostname() 1272 if (dst == NULL) in extract_hostname() 1275 memcpy(dst, src, len); in extract_hostname() 1276 dst[len] = '\0'; in extract_hostname() 1278 return dst; in extract_hostname()
|
/kernel/linux/linux-5.10/mm/ |
H A D | hugetlb.c | 3811 int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src, in copy_hugetlb_page_range() argument 3846 dst_pte = huge_pte_alloc(dst, addr, sz); in copy_hugetlb_page_range() 3856 * However, src could have 'unshared' and dst shares with in copy_hugetlb_page_range() 3865 dst_ptl = huge_pte_lock(h, dst, dst_pte); in copy_hugetlb_page_range() 3873 * unlikely case dst entry !none as this implies in copy_hugetlb_page_range() 3891 set_huge_swap_pte_at(dst, addr, dst_pte, entry, sz); in copy_hugetlb_page_range() 3907 set_huge_pte_at(dst, addr, dst_pte, entry); in copy_hugetlb_page_range() 3908 hugetlb_count_add(pages_per_huge_page(h), dst); in copy_hugetlb_page_range() local
|
/kernel/linux/linux-5.10/net/core/ |
H A D | skbuff.c | 65 #include <net/dst.h> 1048 * @dst: the skb to receive the contents 1056 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src) in skb_morph() argument 1058 skb_release_all(dst); in skb_morph() 1059 return __skb_clone(dst, src); in skb_morph() 4603 /* before exiting rcu section, make sure dst is refcounted */ in sock_queue_err_skb() 5672 * @dst: Destination MAC address of the new header 5681 int skb_eth_push(struct sk_buff *skb, const unsigned char *dst, in skb_eth_push() argument 5699 ether_addr_copy(eth->h_dest, dst); in skb_eth_push()
|
/kernel/linux/linux-6.6/fs/f2fs/ |
H A D | segment.c | 2603 struct f2fs_summary_block *dst; in write_current_sum_page() local 2605 dst = (struct f2fs_summary_block *)page_address(page); in write_current_sum_page() 2606 memset(dst, 0, PAGE_SIZE); in write_current_sum_page() 2611 memcpy(&dst->journal, curseg->journal, SUM_JOURNAL_SIZE); in write_current_sum_page() 2614 memcpy(dst->entries, src->entries, SUM_ENTRY_SIZE); in write_current_sum_page() 2615 memcpy(&dst->footer, &src->footer, SUM_FOOTER_SIZE); in write_current_sum_page()
|
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | ncr53c8xx.c | 1926 (struct ncb *np, ncrcmd *src, ncrcmd *dst, int len); 3484 ncr_script_copy_and_bind (struct ncb *np, ncrcmd *src, ncrcmd *dst, int len) in ncr_script_copy_and_bind() argument 3497 *dst++ = cpu_to_scr(opcode); in ncr_script_copy_and_bind() 3546 dst[-1] = cpu_to_scr(opcode & ~SCR_NO_FLUSH); in ncr_script_copy_and_bind() 3621 *dst++ = cpu_to_scr(new); in ncr_script_copy_and_bind() 3624 *dst++ = cpu_to_scr(*src++); in ncr_script_copy_and_bind()
|
/kernel/linux/linux-6.6/drivers/accel/habanalabs/goya/ |
H A D | goya.c | 2504 void __iomem *dst; in goya_load_firmware_to_device() local 2506 dst = hdev->pcie_bar[DDR_BAR_ID] + LINUX_FW_OFFSET; in goya_load_firmware_to_device() 2508 return hl_fw_load_fw_to_device(hdev, GOYA_LINUX_FW_FILE, dst, 0, 0); in goya_load_firmware_to_device() 2521 void __iomem *dst; in goya_load_boot_fit_to_device() local 2523 dst = hdev->pcie_bar[SRAM_CFG_BAR_ID] + BOOT_FIT_SRAM_OFFSET; in goya_load_boot_fit_to_device() 2525 return hl_fw_load_fw_to_device(hdev, GOYA_BOOT_FIT_FILE, dst, 0, 0); in goya_load_boot_fit_to_device()
|
/kernel/linux/linux-6.6/net/core/ |
H A D | skbuff.c | 67 #include <net/dst.h> 1482 * @dst: the skb to receive the contents 1490 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src) in skb_morph() argument 1492 skb_release_all(dst, SKB_CONSUMED, false); in skb_morph() 1493 return __skb_clone(dst, src); in skb_morph() 5133 /* before exiting rcu section, make sure dst is refcounted */ in sock_queue_err_skb() 6074 * @dst: Destination MAC address of the new header 6083 int skb_eth_push(struct sk_buff *skb, const unsigned char *dst, in skb_eth_push() argument 6101 ether_addr_copy(eth->h_dest, dst); in skb_eth_push()
|
/kernel/linux/linux-5.10/drivers/net/wireless/intel/ipw2x00/ |
H A D | ipw2200.c | 10331 struct sk_buff *dst; in ipw_handle_promiscuous_tx() local 10341 dst = alloc_skb(len + sizeof(*rt_hdr) + sizeof(u16)*2, GFP_ATOMIC); in ipw_handle_promiscuous_tx() 10342 if (!dst) in ipw_handle_promiscuous_tx() 10345 rt_hdr = skb_put(dst, sizeof(*rt_hdr)); in ipw_handle_promiscuous_tx() 10352 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16( in ipw_handle_promiscuous_tx() 10355 *(__le16*)skb_put(dst, sizeof(u16)) = in ipw_handle_promiscuous_tx() 10359 *(__le16*)skb_put(dst, sizeof(u16)) = in ipw_handle_promiscuous_tx() 10363 *(__le16*)skb_put(dst, sizeof(u16)) = in ipw_handle_promiscuous_tx() 10367 rt_hdr->it_len = cpu_to_le16(dst->len); in ipw_handle_promiscuous_tx() 10369 skb_copy_from_linear_data(src, skb_put(dst, le in ipw_handle_promiscuous_tx() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/intel/ipw2x00/ |
H A D | ipw2200.c | 10285 struct sk_buff *dst; in ipw_handle_promiscuous_tx() local 10295 dst = alloc_skb(len + sizeof(*rt_hdr) + sizeof(u16)*2, GFP_ATOMIC); in ipw_handle_promiscuous_tx() 10296 if (!dst) in ipw_handle_promiscuous_tx() 10299 rt_hdr = skb_put(dst, sizeof(*rt_hdr)); in ipw_handle_promiscuous_tx() 10306 *(__le16*)skb_put(dst, sizeof(u16)) = cpu_to_le16( in ipw_handle_promiscuous_tx() 10309 *(__le16*)skb_put(dst, sizeof(u16)) = in ipw_handle_promiscuous_tx() 10313 *(__le16*)skb_put(dst, sizeof(u16)) = in ipw_handle_promiscuous_tx() 10317 *(__le16*)skb_put(dst, sizeof(u16)) = in ipw_handle_promiscuous_tx() 10321 rt_hdr->it_len = cpu_to_le16(dst->len); in ipw_handle_promiscuous_tx() 10323 skb_copy_from_linear_data(src, skb_put(dst, le in ipw_handle_promiscuous_tx() [all...] |
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/src/ |
H A D | fplsp.S | 4297 fmov.s 0x8(%a6),%fp0 # load sgl dst 4316 lea FP_DST(%a6),%a1 # pass ptr to dst 4363 fmov.d 0x8(%a6),%fp0 # load dbl dst 4382 lea FP_DST(%a6),%a1 # pass ptr to dst 4430 mov.l 0x8+0x0(%a6),0x0(%a0) # load ext dst 4450 lea FP_DST(%a6),%a1 # pass ptr to dst 4501 fmov.s 0x8(%a6),%fp0 # load sgl dst 4520 lea FP_DST(%a6),%a1 # pass ptr to dst 4567 fmov.d 0x8(%a6),%fp0 # load dbl dst 4586 lea FP_DST(%a6),%a1 # pass ptr to dst [all...] |
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/src/ |
H A D | fplsp.S | 4297 fmov.s 0x8(%a6),%fp0 # load sgl dst 4316 lea FP_DST(%a6),%a1 # pass ptr to dst 4363 fmov.d 0x8(%a6),%fp0 # load dbl dst 4382 lea FP_DST(%a6),%a1 # pass ptr to dst 4430 mov.l 0x8+0x0(%a6),0x0(%a0) # load ext dst 4450 lea FP_DST(%a6),%a1 # pass ptr to dst 4501 fmov.s 0x8(%a6),%fp0 # load sgl dst 4520 lea FP_DST(%a6),%a1 # pass ptr to dst 4567 fmov.d 0x8(%a6),%fp0 # load dbl dst 4586 lea FP_DST(%a6),%a1 # pass ptr to dst [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | intel_pm.c | 1169 width = drm_rect_width(&plane_state->uapi.dst); in g4x_compute_wm() 2577 drm_rect_width(&plane_state->uapi.dst), in ilk_compute_pri_wm() 2605 drm_rect_width(&plane_state->uapi.dst), in ilk_compute_spr_wm() 2630 drm_rect_width(&plane_state->uapi.dst), in ilk_compute_cur_wm() 2646 return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst), in ilk_compute_fbc_wm() 3170 (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 || in ilk_compute_pipe_wm() 3171 drm_rect_height(&sprstate->uapi.dst) != drm_rect_height(&sprstate->uapi.src) >> 16); in ilk_compute_pipe_wm() 4397 * n.b., src is 16.16 fixed point, dst is whole integer. in skl_plane_downscale_amount() 4401 dst_w = drm_rect_width(&plane_state->uapi.dst); in skl_plane_downscale_amount() 4402 dst_h = drm_rect_height(&plane_state->uapi.dst); in skl_plane_downscale_amount() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/mwifiex/ |
H A D | sta_cmd.c | 1460 static u32 mwifiex_parse_cal_cfg(u8 *src, size_t len, u8 *dst) in mwifiex_parse_cal_cfg() argument 1462 u8 *s = src, *d = dst; in mwifiex_parse_cal_cfg() 1477 return d - dst; in mwifiex_parse_cal_cfg()
|
/kernel/linux/linux-5.10/net/netlink/ |
H A D | af_netlink.c | 333 static void netlink_deliver_tap_kernel(struct sock *dst, struct sock *src, in netlink_deliver_tap_kernel() argument 336 if (!(netlink_is_kernel(dst) && netlink_is_kernel(src))) in netlink_deliver_tap_kernel() 337 netlink_deliver_tap(sock_net(dst), skb); in netlink_deliver_tap_kernel()
|
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-record.c | 175 static size_t zstd_compress(struct perf_session *session, void *dst, size_t dst_size, 1082 static size_t zstd_compress(struct perf_session *session, void *dst, size_t dst_size, in zstd_compress() argument 1088 compressed = zstd_compress_stream_to_records(&session->zstd_data, dst, dst_size, src, src_size, in zstd_compress()
|
/kernel/linux/linux-5.10/net/bluetooth/ |
H A D | hci_request.c | 2822 6, &conn->dst); in __hci_abort_conn() 2829 bacpy(&rej.bdaddr, &conn->dst); in __hci_abort_conn() 2837 bacpy(&rej.bdaddr, &conn->dst); in __hci_abort_conn()
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | ip6_fib.c | 319 if (rt->dst.error == -EAGAIN) { in fib6_rule_lookup() 323 dst_hold(&rt->dst); in fib6_rule_lookup() 326 return &rt->dst; in fib6_rule_lookup() 1034 /* Flush all cached dst in exception table */ in fib6_purge_rt()
|