Home
last modified time | relevance | path

Searched refs:ifl (Results 1 – 12 of 12) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/
H A D0003-rarpd.c-bug-fix.patch83 - struct iflink *ifl;
85 + struct rarpiflink *ifl;
94 - ifl = (struct iflink*)malloc(sizeof(*ifl));
95 + ifl = (struct rarpiflink*)malloc(sizeof(*ifl));
96 if (ifl == NULL)
98 memset(ifl, 0, sizeof(*ifl));
100 ifl->hatype = ifrp->ifr_hwaddr.sa_family;
101 memcpy(ifl->lladdr, ifrp->ifr_hwaddr.sa_data, 14);
102 strncpy(ifl->name, ifrp->ifr_name, IFNAMSIZ);
103 + ifl->name[IFNAMSIZ-1] = 0;
[all …]
/openbmc/linux/arch/s390/kernel/
H A Dsthyi.c138 struct cpu_inf ifl; member
273 cpu_inf = &part_inf->ifl; in lpar_cpu_inf()
296 part_inf->ifl.lpar_weight = weight_ifl; in lpar_cpu_inf()
299 part_inf->ifl.all_weight += weight_ifl; in lpar_cpu_inf()
357 sctns->par.infplgif = scale_cap(lpar_inf.ifl.lpar_grp_cap); in fill_diag()
363 sctns->par.infpsifl = lpar_inf.ifl.cpu_num_shd; in fill_diag()
364 sctns->par.infpdifl = lpar_inf.ifl.cpu_num_ded; in fill_diag()
368 sctns->par.infpabif = scale_cap(lpar_inf.ifl.lpar_cap); in fill_diag()
387 if (lpar_inf.ifl.lpar_weight) { in fill_diag()
389 lpar_inf.ifl.lpar_weight / lpar_inf.ifl.all_weight; in fill_diag()
/openbmc/linux/fs/overlayfs/
H A Dfile.c263 static rwf_t ovl_iocb_to_rwf(int ifl) in ovl_iocb_to_rwf() argument
267 if (ifl & IOCB_NOWAIT) in ovl_iocb_to_rwf()
269 if (ifl & IOCB_HIPRI) in ovl_iocb_to_rwf()
271 if (ifl & IOCB_DSYNC) in ovl_iocb_to_rwf()
273 if (ifl & IOCB_SYNC) in ovl_iocb_to_rwf()
369 int ifl = iocb->ki_flags; in ovl_write_iter() local
391 ifl &= ~(IOCB_DSYNC | IOCB_SYNC); in ovl_write_iter()
397 ifl &= ~IOCB_DIO_CALLER_COMP; in ovl_write_iter()
403 ovl_iocb_to_rwf(ifl)); in ovl_write_iter()
417 aio_req->iocb.ki_flags = ifl; in ovl_write_iter()
/openbmc/linux/arch/microblaze/kernel/cpu/
H A Dcache.c515 .ifl = __flush_icache_all_noirq,
531 .ifl = __flush_icache_all_noirq,
547 .ifl = __flush_icache_all_msr_irq,
562 .ifl = __flush_icache_all_nomsr_irq,
578 .ifl = __flush_icache_all_noirq,
593 .ifl = __flush_icache_all_noirq,
/openbmc/linux/arch/microblaze/include/asm/
H A Dcacheflush.h35 void (*ifl)(void); /* flush */ member
55 #define flush_icache() mbc->ifl();
/openbmc/linux/sound/soc/starfive/
H A Djh7110_tdm.c101 enum TDM_IFL ifl; member
228 datarx = (tdm->rx.ifl << IFL_BIT) | in jh7110_tdm_config()
234 datatx = (tdm->tx.ifl << IFL_BIT) | in jh7110_tdm_config()
536 tdm->rx.ifl = TDM_FIFO_HALF; in jh7110_tdm_init_params()
537 tdm->tx.ifl = TDM_FIFO_HALF; in jh7110_tdm_init_params()
/openbmc/qemu/hw/char/
H A Dpl011.c302 r = s->ifl; in pl011_read()
338 s->read_trigger = (s->ifl >> 1) & 0x1c; in pl011_set_read_trigger()
462 s->ifl = value; in pl011_write()
594 VMSTATE_UINT32(ifl, PL011State),
651 s->ifl = 0x12; in pl011_reset()
/openbmc/qemu/rust/hw/char/pl011/src/
H A Ddevice.rs79 pub ifl: u32, field
221 Ok(FLS) => self.ifl.into(), in read()
304 self.ifl = value; in write()
436 self.ifl = 0x12; in reset()
H A Ddevice_class.rs66 vmstate_uint32!(ifl, PL011State),
/openbmc/qemu/include/hw/char/
H A Dpl011.h46 uint32_t ifl; member
/openbmc/linux/lib/zlib_dfltcc/
H A Ddfltcc.h62 uint16_t ifl; /* Incomplete-Function Length */ member
/openbmc/linux/drivers/tty/serial/
H A Drp2.c339 unsigned long ifl, in __rp2_uart_set_termios() argument
367 writeb((ifl & IXON) ? RP2_TX_SWFLOW_ena : RP2_TX_SWFLOW_dis, in __rp2_uart_set_termios()
369 writeb((ifl & IXOFF) ? RP2_RX_SWFLOW_ena : RP2_RX_SWFLOW_dis, in __rp2_uart_set_termios()