/Linux-v5.15/net/sched/ |
D | em_ipt.c | 42 static int check_match(struct net *net, struct em_ipt_match *im, int mdata_len) in check_match() argument 52 mtpar.hook_mask = 1 << im->hook; in check_match() 53 mtpar.family = im->match->family; in check_match() 54 mtpar.match = im->match; in check_match() 56 mtpar.matchinfo = (void *)im->match_data; in check_match() 130 struct em_ipt_match *im = NULL; in em_ipt_change() local 160 im = kzalloc(sizeof(*im) + mdata_len, GFP_KERNEL); in em_ipt_change() 161 if (!im) { in em_ipt_change() 166 im->match = match; in em_ipt_change() 167 im->hook = nla_get_u32(tb[TCA_EM_IPT_HOOK]); in em_ipt_change() [all …]
|
/Linux-v5.15/net/ipv4/ |
D | igmp.c | 156 static void igmpv3_add_delrec(struct in_device *in_dev, struct ip_mc_list *im, 158 static void igmpv3_del_delrec(struct in_device *in_dev, struct ip_mc_list *im); 167 static void ip_ma_put(struct ip_mc_list *im) in ip_ma_put() argument 169 if (refcount_dec_and_test(&im->refcnt)) { in ip_ma_put() 170 in_dev_put(im->interface); in ip_ma_put() 171 kfree_rcu(im, rcu); in ip_ma_put() 202 static void igmp_stop_timer(struct ip_mc_list *im) in igmp_stop_timer() argument 204 spin_lock_bh(&im->lock); in igmp_stop_timer() 205 if (del_timer(&im->timer)) in igmp_stop_timer() 206 refcount_dec(&im->refcnt); in igmp_stop_timer() [all …]
|
/Linux-v5.15/kernel/bpf/ |
D | trampoline.c | 202 struct bpf_tramp_image *im; in __bpf_tramp_image_put_deferred() local 204 im = container_of(work, struct bpf_tramp_image, work); in __bpf_tramp_image_put_deferred() 205 bpf_image_ksym_del(&im->ksym); in __bpf_tramp_image_put_deferred() 206 bpf_jit_free_exec(im->image); in __bpf_tramp_image_put_deferred() 208 percpu_ref_exit(&im->pcref); in __bpf_tramp_image_put_deferred() 209 kfree_rcu(im, rcu); in __bpf_tramp_image_put_deferred() 215 struct bpf_tramp_image *im; in __bpf_tramp_image_put_rcu() local 217 im = container_of(rcu, struct bpf_tramp_image, rcu); in __bpf_tramp_image_put_rcu() 218 INIT_WORK(&im->work, __bpf_tramp_image_put_deferred); in __bpf_tramp_image_put_rcu() 219 schedule_work(&im->work); in __bpf_tramp_image_put_rcu() [all …]
|
/Linux-v5.15/fs/nfs/ |
D | nfs4idmap.c | 512 struct idmap_msg *im, in nfs_idmap_prepare_message() argument 518 im->im_type = IDMAP_TYPE_GROUP; in nfs_idmap_prepare_message() 523 im->im_type = IDMAP_TYPE_USER; in nfs_idmap_prepare_message() 526 im->im_conv = IDMAP_CONV_NAMETOID; in nfs_idmap_prepare_message() 527 ret = match_strlcpy(im->im_name, &substr, IDMAP_NAMESZ); in nfs_idmap_prepare_message() 531 im->im_type = IDMAP_TYPE_USER; in nfs_idmap_prepare_message() 534 im->im_conv = IDMAP_CONV_IDTONAME; in nfs_idmap_prepare_message() 535 ret = match_int(&substr, &im->im_id); in nfs_idmap_prepare_message() 545 msg->data = im; in nfs_idmap_prepare_message() 587 struct idmap_msg *im; in nfs_idmap_legacy_upcall() local [all …]
|
/Linux-v5.15/fs/f2fs/ |
D | checkpoint.c | 468 struct inode_management *im = &sbi->im[type]; in __add_ino_entry() local 473 e = radix_tree_lookup(&im->ino_root, ino); in __add_ino_entry() 484 spin_lock(&im->ino_lock); in __add_ino_entry() 485 e = radix_tree_lookup(&im->ino_root, ino); in __add_ino_entry() 488 spin_unlock(&im->ino_lock); in __add_ino_entry() 492 if (unlikely(radix_tree_insert(&im->ino_root, ino, e))) in __add_ino_entry() 498 list_add_tail(&e->list, &im->ino_list); in __add_ino_entry() 500 im->ino_num++; in __add_ino_entry() 506 spin_unlock(&im->ino_lock); in __add_ino_entry() 515 struct inode_management *im = &sbi->im[type]; in __remove_ino_entry() local [all …]
|
/Linux-v5.15/drivers/scsi/bfa/ |
D | bfad_im.c | 12 * bfad_im.c Linux driver IM module. 21 BFA_TRC_FILE(LDRV, IM); 433 (*itnim_drv)->im = bfad->im; in bfa_fcb_itnim_alloc() 456 struct bfad_im_s *im = itnim_drv->im; in bfa_fcb_itnim_free() local 480 queue_work(im->drv_workq, &itnim_drv->itnim_work); in bfa_fcb_itnim_free() 491 struct bfad_im_s *im = itnim_drv->im; in bfa_fcb_itnim_online() local 501 queue_work(im->drv_workq, &itnim_drv->itnim_work); in bfa_fcb_itnim_online() 513 struct bfad_im_s *im = itnim_drv->im; in bfa_fcb_itnim_offline() local 528 queue_work(im->drv_workq, &itnim_drv->itnim_work); in bfa_fcb_itnim_offline() 647 queue_work(bfad->im->drv_workq, in bfad_im_port_delete() [all …]
|
D | bfad_im.h | 91 struct bfad_im_s *im; member 155 queue_work(drv->im->drv_workq, &drv->im->aen_im_notify_work); in bfad_im_post_vendor_event() 161 void bfad_destroy_workq(struct bfad_im_s *im);
|
/Linux-v5.15/drivers/net/wireless/ath/ath9k/ |
D | ar9003_calib.c | 892 int i, im, nmeasurement; in ar9003_hw_tx_iq_cal_outlier_detection() local 941 for (im = 0; im < nmeasurement; im++) { in ar9003_hw_tx_iq_cal_outlier_detection() 942 magnitude = coeff->mag_coeff[i][im][0]; in ar9003_hw_tx_iq_cal_outlier_detection() 943 phase = coeff->phs_coeff[i][im][0]; in ar9003_hw_tx_iq_cal_outlier_detection() 948 if ((im % 2) == 0) in ar9003_hw_tx_iq_cal_outlier_detection() 949 REG_RMW_FIELD(ah, tx_corr_coeff[im][i], in ar9003_hw_tx_iq_cal_outlier_detection() 953 REG_RMW_FIELD(ah, tx_corr_coeff[im][i], in ar9003_hw_tx_iq_cal_outlier_detection() 958 caldata->tx_corr_coeff[im][i] = in ar9003_hw_tx_iq_cal_outlier_detection() 1008 int im, ix, iy, temp; in __ar955x_tx_iq_cal_sort() local 1010 for (im = 0; im < nmeasurement; im++) { in __ar955x_tx_iq_cal_sort() [all …]
|
/Linux-v5.15/net/ipv6/ |
D | anycast.c | 487 struct ifacaddr6 *im = NULL; in ac6_get_first() local 498 im = idev->ac_list; in ac6_get_first() 499 if (im) { in ac6_get_first() 505 return im; in ac6_get_first() 508 static struct ifacaddr6 *ac6_get_next(struct seq_file *seq, struct ifacaddr6 *im) in ac6_get_next() argument 512 im = im->aca_next; in ac6_get_next() 513 while (!im) { in ac6_get_next() 526 im = state->idev->ac_list; in ac6_get_next() 528 return im; in ac6_get_next() 533 struct ifacaddr6 *im = ac6_get_first(seq); in ac6_get_idx() local [all …]
|
D | mcast.c | 732 static void mld_add_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im) in mld_add_delrec() argument 746 pmc->idev = im->idev; in mld_add_delrec() 748 pmc->mca_addr = im->mca_addr; in mld_add_delrec() 750 pmc->mca_sfmode = im->mca_sfmode; in mld_add_delrec() 755 mc_dereference(im->mca_tomb, idev)); in mld_add_delrec() 757 mc_dereference(im->mca_sources, idev)); in mld_add_delrec() 758 RCU_INIT_POINTER(im->mca_tomb, NULL); in mld_add_delrec() 759 RCU_INIT_POINTER(im->mca_sources, NULL); in mld_add_delrec() 770 static void mld_del_delrec(struct inet6_dev *idev, struct ifmcaddr6 *im) in mld_del_delrec() argument 773 struct in6_addr *pmca = &im->mca_addr; in mld_del_delrec() [all …]
|
/Linux-v5.15/drivers/irqchip/ |
D | irq-tb10x.c | 45 uint32_t im, mod, pol; in tb10x_irq_set_type() local 47 im = data->mask; in tb10x_irq_set_type() 51 mod = ab_irqctl_readreg(gc, AB_IRQCTL_SRC_MODE) | im; in tb10x_irq_set_type() 52 pol = ab_irqctl_readreg(gc, AB_IRQCTL_SRC_POLARITY) | im; in tb10x_irq_set_type() 56 pol ^= im; in tb10x_irq_set_type() 59 mod ^= im; in tb10x_irq_set_type() 65 mod ^= im; in tb10x_irq_set_type() 66 pol ^= im; in tb10x_irq_set_type() 82 ab_irqctl_writereg(gc, AB_IRQCTL_INT_STATUS, im); in tb10x_irq_set_type()
|
/Linux-v5.15/arch/powerpc/platforms/83xx/ |
D | mpc837x_rdb.c | 23 void __iomem *im; in mpc837x_rdb_sd_cfg() local 25 im = ioremap(get_immrbase(), 0x1000); in mpc837x_rdb_sd_cfg() 26 if (!im) { in mpc837x_rdb_sd_cfg() 35 clrsetbits_be32(im + MPC83XX_SICRL_OFFS, MPC837X_SICRL_USBB_MASK, in mpc837x_rdb_sd_cfg() 37 clrsetbits_be32(im + MPC83XX_SICRH_OFFS, MPC837X_SICRH_SPI_MASK, in mpc837x_rdb_sd_cfg() 39 iounmap(im); in mpc837x_rdb_sd_cfg()
|
/Linux-v5.15/arch/mips/lantiq/ |
D | irq.c | 81 unsigned long im = offset / INT_NUM_IM_OFFSET; in ltq_disable_irq() local 89 ltq_icu_w32(vpe, im, in ltq_disable_irq() 90 ltq_icu_r32(vpe, im, LTQ_ICU_IER) & ~BIT(offset), in ltq_disable_irq() 99 unsigned long im = offset / INT_NUM_IM_OFFSET; in ltq_mask_and_ack_irq() local 107 ltq_icu_w32(vpe, im, in ltq_mask_and_ack_irq() 108 ltq_icu_r32(vpe, im, LTQ_ICU_IER) & ~BIT(offset), in ltq_mask_and_ack_irq() 110 ltq_icu_w32(vpe, im, BIT(offset), LTQ_ICU_ISR); in ltq_mask_and_ack_irq() 118 unsigned long im = offset / INT_NUM_IM_OFFSET; in ltq_ack_irq() local 126 ltq_icu_w32(vpe, im, BIT(offset), LTQ_ICU_ISR); in ltq_ack_irq() 134 unsigned long im = offset / INT_NUM_IM_OFFSET; in ltq_enable_irq() local [all …]
|
/Linux-v5.15/drivers/clk/versatile/ |
D | clk-impd1.c | 3 * Clock driver for the ARM Integrator/IM-PD1 board 23 * There are two VCO's on the IM-PD1 75 pr_err("no regmap for syscon IM-PD1 ICST clock parent\n"); in integrator_impd1_clk_spawn() 96 dev_err(dev, "error setting up IM-PD1 ICST clock\n"); in integrator_impd1_clk_spawn() 122 { .compatible = "arm,im-pd1-syscon", }, 137 MODULE_DESCRIPTION("Arm IM-PD1 module clock driver");
|
/Linux-v5.15/arch/arm/boot/dts/ |
D | integratorap-im-pd1.dts | 4 * with the IM-PD1 example logical module mounted. 10 model = "ARM Integrator/AP with IM-PD1"; 19 /* 1 MB of designated video RAM on the IM-PD1 */ 29 compatible = "arm,im-pd1-syscon", "syscon"; 38 clock-output-names = "IM-PD1-VCO1"; 47 clock-output-names = "IM-PD1-VCO2"; 80 /* Push buttons on the IM-PD1 */
|
/Linux-v5.15/Documentation/devicetree/bindings/display/ |
D | multi-inno,mi0283qt.txt | 11 the panel interface mode (IM[3:0] pins): 12 - present: IM=x110 4-wire 8-bit data serial interface 13 - absent: IM=x101 3-wire 9-bit data serial interface
|
/Linux-v5.15/net/sunrpc/ |
D | svcauth_unix.c | 107 struct ip_map *im = container_of(item, struct ip_map,h); in ip_map_put() local 111 auth_domain_put(&im->m_client->h); in ip_map_put() 112 kfree_rcu(im, m_rcu); in ip_map_put() 161 struct ip_map *im = container_of(h, struct ip_map, h); in ip_map_request() local 163 if (ipv6_addr_v4mapped(&(im->m_addr))) { in ip_map_request() 164 snprintf(text_addr, 20, "%pI4", &im->m_addr.s6_addr32[3]); in ip_map_request() 166 snprintf(text_addr, 40, "%pI6", &im->m_addr); in ip_map_request() 168 qword_add(bpp, blen, im->m_class); in ip_map_request() 262 struct ip_map *im; in ip_map_show() local 270 im = container_of(h, struct ip_map, h); in ip_map_show() [all …]
|
/Linux-v5.15/arch/arm/mach-integrator/ |
D | Kconfig | 33 bool "Include support for Integrator/IM-PD1" 41 The IM-PD1 is an add-on logic module for the Integrator which 43 The IM-PD1 can be found on the Integrator/PP2 platform.
|
/Linux-v5.15/drivers/tty/serial/ |
D | amba-pl011.c | 262 unsigned int im; /* interrupt mask */ member 715 uap->im &= ~UART011_TXIM; in pl011_dma_tx_irq() 716 pl011_write(uap->im, uap, REG_IMSC); in pl011_dma_tx_irq() 725 uap->im &= ~UART011_TXIM; in pl011_dma_tx_irq() 726 pl011_write(uap->im, uap, REG_IMSC); in pl011_dma_tx_irq() 765 uap->im &= ~UART011_TXIM; in pl011_dma_tx_start() 766 pl011_write(uap->im, uap, REG_IMSC); in pl011_dma_tx_start() 868 uap->im &= ~UART011_RXIM; in pl011_dma_rx_trigger_dma() 869 pl011_write(uap->im, uap, REG_IMSC); in pl011_dma_rx_trigger_dma() 993 uap->im |= UART011_RXIM; in pl011_dma_rx_irq() [all …]
|
/Linux-v5.15/drivers/gpu/drm/pl111/ |
D | pl111_versatile.c | 79 .compatible = "arm,im-pd1-syscon", 156 dev_info(drm->dev, "enable IM-PD1 CLCD connectors\n"); in pl111_impd1_enable() 167 dev_info(drm->dev, "disable IM-PD1 CLCD connectors\n"); in pl111_impd1_disable() 321 * The IM-PD1 variant is a PL110 with a bunch of broken, or not 325 .name = "PL110 IM-PD1", 496 * On the Integrator, check if we should use the IM-PD1 instead, in pl111_versatile_init() 526 dev_info(dev, "set up callbacks for IM-PD1 PL110\n"); in pl111_versatile_init()
|
/Linux-v5.15/drivers/i2c/busses/ |
D | i2c-iop3xx.c | 360 int im = 0; in iop3xx_i2c_master_xfer() local 368 for (im = 0; ret == 0 && im != num; im++) { in iop3xx_i2c_master_xfer() 369 ret = iop3xx_i2c_handle_msg(i2c_adap, &msgs[im]); in iop3xx_i2c_master_xfer() 377 return im; in iop3xx_i2c_master_xfer()
|
D | i2c-sprd.c | 291 int im, ret; in sprd_i2c_master_xfer() local 297 for (im = 0; im < num - 1; im++) { in sprd_i2c_master_xfer() 298 ret = sprd_i2c_handle_msg(i2c_adap, &msgs[im], 0); in sprd_i2c_master_xfer() 303 ret = sprd_i2c_handle_msg(i2c_adap, &msgs[im++], 1); in sprd_i2c_master_xfer() 309 return ret < 0 ? ret : im; in sprd_i2c_master_xfer()
|
/Linux-v5.15/drivers/input/serio/ |
D | hp_sdc.c | 404 hp_sdc_status_out8(hp_sdc.im | HP_SDC_CMD_SET_IM); in hp_sdc_put() 675 hp_sdc.im &= ~HP_SDC_IM_FH; in hp_sdc_request_timer_irq() 676 hp_sdc.im &= ~HP_SDC_IM_PT; in hp_sdc_request_timer_irq() 677 hp_sdc.im &= ~HP_SDC_IM_TIMERS; in hp_sdc_request_timer_irq() 698 hp_sdc.im &= ~(HP_SDC_IM_HIL | HP_SDC_IM_RESET); in hp_sdc_request_hil_irq() 720 hp_sdc.im &= ~(HP_SDC_IM_HIL | HP_SDC_IM_RESET); in hp_sdc_request_cooked_irq() 740 hp_sdc.im |= HP_SDC_IM_TIMERS; in hp_sdc_release_timer_irq() 741 hp_sdc.im |= HP_SDC_IM_FH; in hp_sdc_release_timer_irq() 742 hp_sdc.im |= HP_SDC_IM_PT; in hp_sdc_release_timer_irq() 762 hp_sdc.im |= (HP_SDC_IM_HIL | HP_SDC_IM_RESET); in hp_sdc_release_hil_irq() [all …]
|
/Linux-v5.15/arch/arm/mach-ux500/ |
D | pm.c | 113 u32 it, im; in prcmu_pending_irq() local 118 im = readl(PRCM_ARMITMSK31TO0 + i * 4); in prcmu_pending_irq() 119 if (it & im) in prcmu_pending_irq()
|
/Linux-v5.15/Documentation/hwmon/ |
D | ltc2947.rst | 61 curr1_input IP-IM Sense current (mA) 69 curr1_label Channel label (IP-IM)
|