/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | gvp11.c | 23 struct WD33C93_hostdata wh; member 54 struct WD33C93_hostdata *wh = &hdata->wh; in dma_setup() local 62 if (addr & wh->dma_xfer_mask) { in dma_setup() 63 wh->dma_bounce_len = (cmd->SCp.this_residual + 511) & ~0x1ff; in dma_setup() 66 wh->dma_bounce_buffer = in dma_setup() 67 kmalloc(wh->dma_bounce_len, GFP_KERNEL); in dma_setup() 68 wh->dma_buffer_pool = BUF_SCSI_ALLOCED; in dma_setup() 72 !wh->dma_bounce_buffer) { in dma_setup() 73 wh in dma_setup() 150 struct WD33C93_hostdata *wh = &hdata->wh; dma_stop() local [all...] |
H A D | a2091.c | 21 struct WD33C93_hostdata wh; member 45 struct WD33C93_hostdata *wh = &hdata->wh; in dma_setup() local 52 wh->dma_bounce_len = (cmd->SCp.this_residual + 511) & ~0x1ff; in dma_setup() 53 wh->dma_bounce_buffer = kmalloc(wh->dma_bounce_len, in dma_setup() 57 if (!wh->dma_bounce_buffer) { in dma_setup() 58 wh->dma_bounce_len = 0; in dma_setup() 63 addr = virt_to_bus(wh->dma_bounce_buffer); in dma_setup() 68 kfree(wh in dma_setup() 111 struct WD33C93_hostdata *wh = &hdata->wh; dma_stop() local [all...] |
H A D | a3000.c | 22 struct WD33C93_hostdata wh; member 49 struct WD33C93_hostdata *wh = &hdata->wh; in dma_setup() local 61 wh->dma_bounce_len = (cmd->SCp.this_residual + 511) & ~0x1ff; in dma_setup() 62 wh->dma_bounce_buffer = kmalloc(wh->dma_bounce_len, in dma_setup() 66 if (!wh->dma_bounce_buffer) { in dma_setup() 67 wh->dma_bounce_len = 0; in dma_setup() 73 memcpy(wh->dma_bounce_buffer, cmd->SCp.ptr, in dma_setup() 77 addr = virt_to_bus(wh in dma_setup() 113 struct WD33C93_hostdata *wh = &hdata->wh; dma_stop() local [all...] |
H A D | sgiwd93.c | 35 struct WD33C93_hostdata wh; member 111 hdata->wh.dma_dir = datainp; in dma_setup() 153 if (hdata->wh.dma_dir) { in dma_stop() 161 DMA_DIR(hdata->wh.dma_dir)); in dma_stop() 251 hdata->wh.no_sync = 0; in sgiwd93_probe() 252 hdata->wh.fast = 1; in sgiwd93_probe() 253 hdata->wh.dma_mode = CTRL_BURST; in sgiwd93_probe()
|
/kernel/linux/linux-6.6/drivers/scsi/ |
H A D | gvp11.c | 27 struct WD33C93_hostdata wh; member 59 struct WD33C93_hostdata *wh = &hdata->wh; in dma_setup() local 76 if (addr & wh->dma_xfer_mask) { in dma_setup() 83 wh->dma_bounce_len = (scsi_pointer->this_residual + 511) & ~0x1ff; in dma_setup() 86 wh->dma_bounce_buffer = in dma_setup() 87 kmalloc(wh->dma_bounce_len, GFP_KERNEL); in dma_setup() 88 wh->dma_buffer_pool = BUF_SCSI_ALLOCED; in dma_setup() 92 !wh->dma_bounce_buffer) { in dma_setup() 93 wh in dma_setup() 191 struct WD33C93_hostdata *wh = &hdata->wh; dma_stop() local [all...] |
H A D | a2091.c | 25 struct WD33C93_hostdata wh; member 54 struct WD33C93_hostdata *wh = &hdata->wh; in dma_setup() local 76 wh->dma_bounce_len = (scsi_pointer->this_residual + 511) & ~0x1ff; in dma_setup() 77 wh->dma_bounce_buffer = kmalloc(wh->dma_bounce_len, in dma_setup() 81 if (!wh->dma_bounce_buffer) { in dma_setup() 82 wh->dma_bounce_len = 0; in dma_setup() 88 memcpy(wh->dma_bounce_buffer, scsi_pointer->ptr, in dma_setup() 93 addr = dma_map_single(hdata->dev, wh in dma_setup() 140 struct WD33C93_hostdata *wh = &hdata->wh; dma_stop() local [all...] |
H A D | a3000.c | 27 struct WD33C93_hostdata wh; member 59 struct WD33C93_hostdata *wh = &hdata->wh; in dma_setup() local 88 wh->dma_bounce_len = (scsi_pointer->this_residual + 511) & ~0x1ff; in dma_setup() 89 wh->dma_bounce_buffer = kmalloc(wh->dma_bounce_len, in dma_setup() 93 if (!wh->dma_bounce_buffer) { in dma_setup() 94 wh->dma_bounce_len = 0; in dma_setup() 101 memcpy(wh->dma_bounce_buffer, scsi_pointer->ptr, in dma_setup() 121 wh in dma_setup() 144 struct WD33C93_hostdata *wh = &hdata->wh; dma_stop() local [all...] |
H A D | sgiwd93.c | 39 struct WD33C93_hostdata wh; member 117 hdata->wh.dma_dir = datainp; in dma_setup() 160 if (hdata->wh.dma_dir) { in dma_stop() 168 DMA_DIR(hdata->wh.dma_dir)); in dma_stop() 259 hdata->wh.no_sync = 0; in sgiwd93_probe() 260 hdata->wh.fast = 1; in sgiwd93_probe() 261 hdata->wh.dma_mode = CTRL_BURST; in sgiwd93_probe()
|
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/ptrace/ |
H A D | ptrace-hwbreak.c | 243 int wh = ptrace(PPC_PTRACE_SETHWDEBUG, child_pid, 0, info); in ptrace_sethwdebug() local 245 if (wh <= 0) { in ptrace_sethwdebug() 249 return wh; in ptrace_sethwdebug() 252 static void ptrace_delhwdebug(pid_t child_pid, int wh) in ptrace_delhwdebug() argument 254 if (ptrace(PPC_PTRACE_DELHWDEBUG, child_pid, 0, wh) < 0) { in ptrace_delhwdebug() 344 int wh; in test_sethwdebug_exact() local 348 wh = ptrace_sethwdebug(child_pid, &info); in test_sethwdebug_exact() 351 ptrace_delhwdebug(child_pid, wh); in test_sethwdebug_exact() 355 wh = ptrace_sethwdebug(child_pid, &info); in test_sethwdebug_exact() 358 ptrace_delhwdebug(child_pid, wh); in test_sethwdebug_exact() 374 int wh; test_sethwdebug_exact_kernel_userspace() local 390 int wh; test_sethwdebug_range_aligned() local 426 int wh; test_sethwdebug_range_unaligned() local 463 int wh; test_sethwdebug_range_unaligned_dar() local 481 int wh; test_sethwdebug_dawr_max_range() local [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/ptrace/ |
H A D | ptrace-hwbreak.c | 256 int wh = ptrace(PPC_PTRACE_SETHWDEBUG, child_pid, 0, info); in ptrace_sethwdebug() local 258 if (wh <= 0) { in ptrace_sethwdebug() 262 return wh; in ptrace_sethwdebug() 265 static void ptrace_delhwdebug(pid_t child_pid, int wh) in ptrace_delhwdebug() argument 267 if (ptrace(PPC_PTRACE_DELHWDEBUG, child_pid, 0, wh) < 0) { in ptrace_delhwdebug() 357 int wh; in test_sethwdebug_exact() local 361 wh = ptrace_sethwdebug(child_pid, &info); in test_sethwdebug_exact() 364 ptrace_delhwdebug(child_pid, wh); in test_sethwdebug_exact() 368 wh = ptrace_sethwdebug(child_pid, &info); in test_sethwdebug_exact() 371 ptrace_delhwdebug(child_pid, wh); in test_sethwdebug_exact() 387 int wh; test_sethwdebug_exact_kernel_userspace() local 403 int wh; test_sethwdebug_range_aligned() local 502 int wh; test_sethwdebug_range_unaligned() local 539 int wh; test_sethwdebug_range_unaligned_dar() local 557 int wh; test_sethwdebug_dawr_max_range() local [all...] |
/kernel/linux/linux-5.10/net/bridge/netfilter/ |
H A D | ebt_among.c | 19 static bool ebt_mac_wormhash_contains(const struct ebt_mac_wormhash *wh, in ebt_mac_wormhash_contains() argument 33 start = wh->table[key]; in ebt_mac_wormhash_contains() 34 limit = wh->table[key + 1]; in ebt_mac_wormhash_contains() 37 p = &wh->pool[i]; in ebt_mac_wormhash_contains() 44 p = &wh->pool[i]; in ebt_mac_wormhash_contains() 54 *wh) in ebt_mac_wormhash_check_integrity() 59 if (wh->table[i] > wh->table[i + 1]) in ebt_mac_wormhash_check_integrity() 61 if (wh->table[i] < 0) in ebt_mac_wormhash_check_integrity() 63 if (wh in ebt_mac_wormhash_check_integrity() 53 ebt_mac_wormhash_check_integrity(const struct ebt_mac_wormhash *wh) ebt_mac_wormhash_check_integrity() argument 195 wormhash_sizes_valid(const struct ebt_mac_wormhash *wh, int a, int b) wormhash_sizes_valid() argument [all...] |
/kernel/linux/linux-6.6/net/bridge/netfilter/ |
H A D | ebt_among.c | 19 static bool ebt_mac_wormhash_contains(const struct ebt_mac_wormhash *wh, in ebt_mac_wormhash_contains() argument 33 start = wh->table[key]; in ebt_mac_wormhash_contains() 34 limit = wh->table[key + 1]; in ebt_mac_wormhash_contains() 37 p = &wh->pool[i]; in ebt_mac_wormhash_contains() 44 p = &wh->pool[i]; in ebt_mac_wormhash_contains() 54 *wh) in ebt_mac_wormhash_check_integrity() 59 if (wh->table[i] > wh->table[i + 1]) in ebt_mac_wormhash_check_integrity() 61 if (wh->table[i] < 0) in ebt_mac_wormhash_check_integrity() 63 if (wh in ebt_mac_wormhash_check_integrity() 53 ebt_mac_wormhash_check_integrity(const struct ebt_mac_wormhash *wh) ebt_mac_wormhash_check_integrity() argument 195 wormhash_sizes_valid(const struct ebt_mac_wormhash *wh, int a, int b) wormhash_sizes_valid() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/rsi/ |
H A D | rsi_91x_core.c | 99 struct ieee80211_hdr *wh; in rsi_get_num_pkts_dequeue() local 112 wh = (struct ieee80211_hdr *)skb->data; in rsi_get_num_pkts_dequeue() 113 vif = rsi_get_vif(adapter, wh->addr2); in rsi_get_num_pkts_dequeue() 380 struct ieee80211_hdr *wh = NULL; in rsi_core_xmit() local 405 wh = (struct ieee80211_hdr *)&skb->data[0]; in rsi_core_xmit() 408 vif = rsi_get_vif(adapter, wh->addr2); in rsi_core_xmit() 413 if ((ieee80211_is_mgmt(wh->frame_control)) || in rsi_core_xmit() 414 (ieee80211_is_ctl(wh->frame_control)) || in rsi_core_xmit() 415 (ieee80211_is_qos_nullfunc(wh->frame_control))) { in rsi_core_xmit() 416 if (ieee80211_is_assoc_req(wh in rsi_core_xmit() [all...] |
H A D | rsi_91x_hal.c | 61 struct ieee80211_hdr *wh = NULL; in rsi_prepare_mgmt_desc() local 100 wh = (struct ieee80211_hdr *)&skb->data[header_size]; in rsi_prepare_mgmt_desc() 111 if (ieee80211_is_probe_req(wh->frame_control)) in rsi_prepare_mgmt_desc() 114 if (is_broadcast_ether_addr(wh->addr1)) in rsi_prepare_mgmt_desc() 118 cpu_to_le16(IEEE80211_SEQ_TO_SN(le16_to_cpu(wh->seq_ctrl))); in rsi_prepare_mgmt_desc() 127 if (ieee80211_is_probe_resp(wh->frame_control)) { in rsi_prepare_mgmt_desc() 136 (ieee80211_is_action(wh->frame_control))) { in rsi_prepare_mgmt_desc() 137 struct rsi_sta *rsta = rsi_find_sta(common, wh->addr1); in rsi_prepare_mgmt_desc() 156 struct ieee80211_hdr *wh = NULL; in rsi_prepare_data_desc() local 194 wh in rsi_prepare_data_desc() 344 struct ieee80211_hdr *wh; rsi_send_mgmt_pkt() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/rsi/ |
H A D | rsi_91x_core.c | 99 struct ieee80211_hdr *wh; in rsi_get_num_pkts_dequeue() local 112 wh = (struct ieee80211_hdr *)skb->data; in rsi_get_num_pkts_dequeue() 113 vif = rsi_get_vif(adapter, wh->addr2); in rsi_get_num_pkts_dequeue() 379 struct ieee80211_hdr *wh = NULL; in rsi_core_xmit() local 404 wh = (struct ieee80211_hdr *)&skb->data[0]; in rsi_core_xmit() 407 vif = rsi_get_vif(adapter, wh->addr2); in rsi_core_xmit() 412 if ((ieee80211_is_mgmt(wh->frame_control)) || in rsi_core_xmit() 413 (ieee80211_is_ctl(wh->frame_control)) || in rsi_core_xmit() 414 (ieee80211_is_qos_nullfunc(wh->frame_control))) { in rsi_core_xmit() 415 if (ieee80211_is_assoc_req(wh in rsi_core_xmit() [all...] |
H A D | rsi_91x_hal.c | 61 struct ieee80211_hdr *wh = NULL; in rsi_prepare_mgmt_desc() local 100 wh = (struct ieee80211_hdr *)&skb->data[header_size]; in rsi_prepare_mgmt_desc() 111 if (ieee80211_is_probe_req(wh->frame_control)) in rsi_prepare_mgmt_desc() 114 if (is_broadcast_ether_addr(wh->addr1)) in rsi_prepare_mgmt_desc() 118 cpu_to_le16(IEEE80211_SEQ_TO_SN(le16_to_cpu(wh->seq_ctrl))); in rsi_prepare_mgmt_desc() 127 if (ieee80211_is_probe_resp(wh->frame_control)) { in rsi_prepare_mgmt_desc() 136 (ieee80211_is_action(wh->frame_control))) { in rsi_prepare_mgmt_desc() 137 struct rsi_sta *rsta = rsi_find_sta(common, wh->addr1); in rsi_prepare_mgmt_desc() 156 struct ieee80211_hdr *wh = NULL; in rsi_prepare_data_desc() local 194 wh in rsi_prepare_data_desc() 341 struct ieee80211_hdr *wh; rsi_send_mgmt_pkt() local [all...] |
/kernel/linux/linux-6.6/arch/xtensa/lib/ |
H A D | umulsidi3.S | 29 #define wh a2 define 32 #define wh a3 define 41 muluh wh, a2, a3 140 /* Compute the high word into wh. */ 141 do_mul(wh, a2, h, a3, h) /* pp 3 */ 142 add wh, wh, a9
|
/kernel/linux/linux-5.10/arch/alpha/math-emu/ |
H A D | sfp-util.h | 14 #define umul_ppmm(wh, wl, u, v) \ 16 : "=r" ((UDItype)(wh)), \
|
/kernel/linux/linux-6.6/arch/alpha/math-emu/ |
H A D | sfp-util.h | 14 #define umul_ppmm(wh, wl, u, v) \ 16 : "=r" ((UDItype)(wh)), \
|
/kernel/linux/linux-5.10/arch/sparc/math-emu/ |
H A D | sfp-util_64.h | 43 #define umul_ppmm(wh, wl, u, v) \ 68 : "=r" (wh), \
|
/kernel/linux/linux-6.6/arch/sparc/math-emu/ |
H A D | sfp-util_64.h | 43 #define umul_ppmm(wh, wl, u, v) \ 68 : "=r" (wh), \
|
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/ |
H A D | mwl8k.c | 808 struct ieee80211_hdr wh; member 819 hdrlen = ieee80211_hdrlen(tr->wh.frame_control); in mwl8k_remove_dma_header() 821 if (hdrlen != sizeof(tr->wh)) { in mwl8k_remove_dma_header() 822 if (ieee80211_is_data_qos(tr->wh.frame_control)) { in mwl8k_remove_dma_header() 823 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2); in mwl8k_remove_dma_header() 826 memmove(tr->data - hdrlen, &tr->wh, hdrlen); in mwl8k_remove_dma_header() 840 struct ieee80211_hdr *wh; in mwl8k_add_dma_header() local 851 wh = (struct ieee80211_hdr *)skb->data; in mwl8k_add_dma_header() 853 hdrlen = ieee80211_hdrlen(wh->frame_control); in mwl8k_add_dma_header() 875 if (ieee80211_is_data_qos(wh in mwl8k_add_dma_header() 895 struct ieee80211_hdr *wh; mwl8k_encapsulate_tx_frame() local 1277 mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh) mwl8k_capture_bssid() argument 1330 struct ieee80211_hdr *wh; rxq_process() local 1686 struct ieee80211_hdr *wh; mwl8k_txq_reclaim() local 1902 struct ieee80211_hdr *wh; mwl8k_txq_xmit() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/marvell/ |
H A D | mwl8k.c | 809 struct ieee80211_hdr wh; member 820 hdrlen = ieee80211_hdrlen(tr->wh.frame_control); in mwl8k_remove_dma_header() 822 if (hdrlen != sizeof(tr->wh)) { in mwl8k_remove_dma_header() 823 if (ieee80211_is_data_qos(tr->wh.frame_control)) { in mwl8k_remove_dma_header() 824 memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2); in mwl8k_remove_dma_header() 827 memmove(tr->data - hdrlen, &tr->wh, hdrlen); in mwl8k_remove_dma_header() 841 struct ieee80211_hdr *wh; in mwl8k_add_dma_header() local 852 wh = (struct ieee80211_hdr *)skb->data; in mwl8k_add_dma_header() 854 hdrlen = ieee80211_hdrlen(wh->frame_control); in mwl8k_add_dma_header() 876 if (ieee80211_is_data_qos(wh in mwl8k_add_dma_header() 896 struct ieee80211_hdr *wh; mwl8k_encapsulate_tx_frame() local 1279 mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh) mwl8k_capture_bssid() argument 1332 struct ieee80211_hdr *wh; rxq_process() local 1690 struct ieee80211_hdr *wh; mwl8k_txq_reclaim() local 1906 struct ieee80211_hdr *wh; mwl8k_txq_xmit() local [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/exynos4-is/ |
H A D | fimc-isp-video.c | 45 unsigned int wh, i; in isp_video_capture_queue_setup() local 47 wh = vid_fmt->width * vid_fmt->height; in isp_video_capture_queue_setup() 58 if (sizes[i] < (wh * fmt->depth[i]) / 8) in isp_video_capture_queue_setup() 66 sizes[i] = (wh * fmt->depth[i]) / 8; in isp_video_capture_queue_setup()
|
/kernel/linux/linux-6.6/drivers/media/platform/samsung/exynos4-is/ |
H A D | fimc-isp-video.c | 45 unsigned int wh, i; in isp_video_capture_queue_setup() local 47 wh = vid_fmt->width * vid_fmt->height; in isp_video_capture_queue_setup() 58 if (sizes[i] < (wh * fmt->depth[i]) / 8) in isp_video_capture_queue_setup() 66 sizes[i] = (wh * fmt->depth[i]) / 8; in isp_video_capture_queue_setup()
|