| /linux/tools/power/cpupower/utils/helpers/ |
| H A D | bitmask.c | 26 struct bitmask *bmp; in bitmask_alloc() local 28 bmp = malloc(sizeof(*bmp)); in bitmask_alloc() 29 if (!bmp) in bitmask_alloc() 31 bmp->size = n; in bitmask_alloc() 32 bmp->maskp = calloc(longsperbits(n), sizeof(unsigned long)); in bitmask_alloc() 33 if (!bmp->maskp) { in bitmask_alloc() 34 free(bmp); in bitmask_alloc() 37 return bmp; in bitmask_alloc() 41 void bitmask_free(struct bitmask *bmp) in bitmask_free() argument 43 if (!bmp) in bitmask_free() [all …]
|
| H A D | bitmask.h | 17 void bitmask_free(struct bitmask *bmp); 19 struct bitmask *bitmask_setbit(struct bitmask *bmp, unsigned int i); 20 struct bitmask *bitmask_setall(struct bitmask *bmp); 21 struct bitmask *bitmask_clearall(struct bitmask *bmp); 23 unsigned int bitmask_first(const struct bitmask *bmp); 24 unsigned int bitmask_next(const struct bitmask *bmp, unsigned int i); 25 unsigned int bitmask_last(const struct bitmask *bmp); 26 int bitmask_isallclear(const struct bitmask *bmp); 27 int bitmask_isbitset(const struct bitmask *bmp, unsigned int i); 29 int bitmask_parselist(const char *buf, struct bitmask *bmp); [all …]
|
| /linux/fs/jfs/ |
| H A D | jfs_dmap.c | 57 #define BMAP_LOCK_INIT(bmp) mutex_init(&bmp->db_bmaplock) argument 58 #define BMAP_LOCK(bmp) mutex_lock(&bmp->db_bmaplock) argument 59 #define BMAP_UNLOCK(bmp) mutex_unlock(&bmp->db_bmaplock) argument 64 static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno, 70 static int dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, 72 static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results); 73 static int dbAllocNext(struct bmap * bmp, struct dmap * dp, s64 blkno, 75 static int dbAllocNear(struct bmap * bmp, struct dmap * dp, s64 blkno, 78 static int dbAllocDmap(struct bmap * bmp, struct dmap * dp, s64 blkno, 80 static int dbAllocDmapLev(struct bmap * bmp, struct dmap * dp, int nblocks, [all …]
|
| H A D | resize.c | 58 struct bmap *bmp = sbi->bmap; in jfs_extendfs() local 173 if (newFSSize < bmp->db_mapsize) { in jfs_extendfs() 300 mapSize = bmp->db_mapsize; in jfs_extendfs() 303 old_agsize = bmp->db_agsize; /* We need to know if this changes */ in jfs_extendfs() 325 agsizechanged |= (bmp->db_agsize != old_agsize); in jfs_extendfs() 488 j_sb->s_size = cpu_to_le64(bmp->db_mapsize << in jfs_extendfs() 490 j_sb->s_agsize = cpu_to_le32(bmp->db_agsize); in jfs_extendfs()
|
| H A D | jfs_extent.c | 315 struct bmap *bmp = sbi->bmap; in extBalloc() local 326 if (bmp->db_maxfreebud == -1) in extBalloc() 329 max = (s64) 1 << bmp->db_maxfreebud; in extBalloc() 358 atomic_inc(&bmp->db_active[ag]); in extBalloc() 361 atomic_dec(&bmp->db_active[ji->active_ag]); in extBalloc() 362 atomic_inc(&bmp->db_active[ag]); in extBalloc()
|
| H A D | jfs_imap.c | 850 struct metapage *mp, *amp, *bmp, *cmp, *dmp; in diFree() local 1026 amp = bmp = cmp = dmp = NULL; in diFree() 1063 if ((rc = diIAGRead(imap, back, &bmp))) in diFree() 1065 biagp = (struct iag *) bmp->data; in diFree() 1090 ciagp = (struct iag *) bmp->data; in diFree() 1104 diagp = (struct iag *) bmp->data; in diFree() 1215 if (bmp) in diFree() 1216 write_metapage(bmp); in diFree() 1277 if (bmp) in diFree() 1278 release_metapage(bmp); in diFree() [all …]
|
| /linux/fs/hpfs/ |
| H A D | alloc.c | 72 __le32 *bmp; in chk_if_allocated() local 73 if (!(bmp = hpfs_map_bitmap(s, sec >> 14, &qbh, "chk"))) goto fail; in chk_if_allocated() 74 if ((le32_to_cpu(bmp[(sec & 0x3fff) >> 5]) >> (sec & 0x1f)) & 1) { in chk_if_allocated() 81 if (!(bmp = hpfs_map_dnode_bitmap(s, &qbh))) goto fail; in chk_if_allocated() 82 if ((le32_to_cpu(bmp[ssec >> 5]) >> (ssec & 0x1f)) & 1) { in chk_if_allocated() 118 __le32 *bmp; in alloc_in_bmp() local 130 if (!(bmp = hpfs_map_bitmap(s, near >> 14, &qbh, "aib"))) goto uls; in alloc_in_bmp() 132 if (!(bmp = hpfs_map_dnode_bitmap(s, &qbh))) goto uls; in alloc_in_bmp() 134 if (!tstbits(bmp, nr, n + forward)) { in alloc_in_bmp() 139 while ((a = tstbits(bmp, q, n + forward)) != 0) { in alloc_in_bmp() [all …]
|
| H A D | hpfs_fn.h | 187 static inline unsigned tstbits(__le32 *bmp, unsigned b, unsigned n) in tstbits() argument 191 if (!((le32_to_cpu(bmp[(b & 0x3fff) >> 5]) >> (b & 0x1f)) & 1)) return 1; in tstbits() 193 if (!((le32_to_cpu(bmp[((b+i) & 0x3fff) >> 5]) >> ((b+i) & 0x1f)) & 1)) in tstbits() 293 __le32 *hpfs_load_bitmap_directory(struct super_block *, secno bmp);
|
| H A D | map.c | 112 __le32 *hpfs_load_bitmap_directory(struct super_block *s, secno bmp) in hpfs_load_bitmap_directory() argument 123 __le32 *d = hpfs_map_sector(s, bmp+i, &bh, n - i - 1); in hpfs_load_bitmap_directory()
|
| /linux/arch/powerpc/include/asm/ |
| H A D | msi_bitmap.h | 20 int msi_bitmap_alloc_hwirqs(struct msi_bitmap *bmp, int num); 21 void msi_bitmap_free_hwirqs(struct msi_bitmap *bmp, unsigned int offset, 23 void msi_bitmap_reserve_hwirq(struct msi_bitmap *bmp, unsigned int hwirq); 25 int msi_bitmap_reserve_dt_hwirqs(struct msi_bitmap *bmp); 27 int msi_bitmap_alloc(struct msi_bitmap *bmp, unsigned int irq_count, 29 void msi_bitmap_free(struct msi_bitmap *bmp);
|
| /linux/arch/powerpc/platforms/44x/ |
| H A D | hsta_msi.c | 28 struct msi_bitmap bmp; member 52 irq = msi_bitmap_alloc_hwirqs(&ppc4xx_hsta_msi.bmp, 1); in hsta_setup_msi_irqs() 83 msi_bitmap_free_hwirqs(&ppc4xx_hsta_msi.bmp, irq, 1); in hsta_setup_msi_irqs() 115 msi_bitmap_free_hwirqs(&ppc4xx_hsta_msi.bmp, irq, 1); in hsta_teardown_msi_irqs() 150 ret = msi_bitmap_alloc(&ppc4xx_hsta_msi.bmp, irq_count, dev->of_node); in hsta_msi_probe() 181 msi_bitmap_free(&ppc4xx_hsta_msi.bmp); in hsta_msi_probe()
|
| /linux/arch/powerpc/platforms/ps3/ |
| H A D | interrupt.c | 78 struct ps3_bmp bmp __attribute__ ((aligned (PS3_BMP_MINALIGN))); member 104 clear_bit(63 - d->irq, &pd->bmp.mask); in ps3_chip_mask() 125 set_bit(63 - d->irq, &pd->bmp.mask); in ps3_chip_unmask() 640 _dump_64_bmp("stat", &pd->bmp.status, pd->thread_id, func, line); in _dump_bmp() 641 _dump_64_bmp("mask", (u64*)&pd->bmp.mask, pd->thread_id, func, line); in _dump_bmp() 652 _dump_64_bmp("mask", (u64*)&pd->bmp.mask, pd->thread_id, func, line); in _dump_mask() 705 u64 x = (pd->bmp.status & pd->bmp.mask); in ps3_get_irq() 758 ps3_mm_phys_to_lpar(__pa(&pd->bmp))); in ps3_init_IRQ() 761 pd->thread_id, ps3_mm_phys_to_lpar(__pa(&pd->bmp))); in ps3_init_IRQ()
|
| /linux/drivers/scsi/lpfc/ |
| H A D | lpfc_ct.c | 119 struct lpfc_dmabuf *mp, *bmp; in lpfc_ct_unsol_cmpl() local 126 bmp = cmdiocb->bpl_dmabuf; in lpfc_ct_unsol_cmpl() 133 if (bmp) { in lpfc_ct_unsol_cmpl() 134 lpfc_mbuf_free(phba, bmp->virt, bmp->phys); in lpfc_ct_unsol_cmpl() 135 kfree(bmp); in lpfc_ct_unsol_cmpl() 161 struct lpfc_dmabuf *bmp = NULL; in lpfc_ct_reject_event() local 181 bmp = kmalloc_obj(*bmp); in lpfc_ct_reject_event() 182 if (!bmp) { in lpfc_ct_reject_event() 187 bmp->virt = lpfc_mbuf_alloc(phba, MEM_PRI, &bmp->phys); in lpfc_ct_reject_event() 188 if (!bmp->virt) { in lpfc_ct_reject_event() [all …]
|
| H A D | lpfc_nvme.c | 390 lpfc_nvme_gen_req(struct lpfc_vport *vport, struct lpfc_dmabuf *bmp, in lpfc_nvme_gen_req() argument 414 genwqe->bpl_dmabuf = bmp; in lpfc_nvme_gen_req() 436 bpl = (struct ulp_bde64 *)bmp->virt; in lpfc_nvme_gen_req() 523 genwqe, pnvme_lsreq, bmp, xmit_len, first_len); in lpfc_nvme_gen_req() 549 struct lpfc_dmabuf *bmp; in __lpfc_nvme_ls_req() local 590 bmp = kmalloc_obj(*bmp); in __lpfc_nvme_ls_req() 591 if (!bmp) { in __lpfc_nvme_ls_req() 599 bmp->virt = lpfc_mbuf_alloc(vport->phba, MEM_PRI, &(bmp->phys)); in __lpfc_nvme_ls_req() 600 if (!bmp->virt) { in __lpfc_nvme_ls_req() 605 kfree(bmp); in __lpfc_nvme_ls_req() [all …]
|
| H A D | lpfc_bsg.c | 307 struct lpfc_dmabuf *bmp, *cmp, *rmp; in lpfc_bsg_send_mgmt_cmd_cmp() local 335 bmp = cmdiocbq->bpl_dmabuf; in lpfc_bsg_send_mgmt_cmd_cmp() 368 lpfc_mbuf_free(phba, bmp->virt, bmp->phys); in lpfc_bsg_send_mgmt_cmd_cmp() 369 kfree(bmp); in lpfc_bsg_send_mgmt_cmd_cmp() 398 struct lpfc_dmabuf *bmp = NULL, *cmp = NULL, *rmp = NULL; in lpfc_bsg_send_mgmt_cmd() local 433 bmp = kmalloc_obj(struct lpfc_dmabuf); in lpfc_bsg_send_mgmt_cmd() 434 if (!bmp) { in lpfc_bsg_send_mgmt_cmd() 438 bmp->virt = lpfc_mbuf_alloc(phba, 0, &bmp->phys); in lpfc_bsg_send_mgmt_cmd() 439 if (!bmp->virt) { in lpfc_bsg_send_mgmt_cmd() 444 INIT_LIST_HEAD(&bmp->list); in lpfc_bsg_send_mgmt_cmd() [all …]
|
| H A D | lpfc.h | 983 struct lpfc_dmabuf *bmp, 987 struct lpfc_dmabuf *bmp, u16 rpi, 990 struct lpfc_dmabuf *bmp, u16 rpi,
|
| /linux/fs/xfs/scrub/ |
| H A D | rmap.c | 288 struct xagb_bitmap *bmp = NULL; in xchk_rmapbt_mark_bitmap() local 308 bmp = &cr->fs_owned; in xchk_rmapbt_mark_bitmap() 311 bmp = &cr->log_owned; in xchk_rmapbt_mark_bitmap() 314 bmp = &cr->ag_owned; in xchk_rmapbt_mark_bitmap() 317 bmp = &cr->inobt_owned; in xchk_rmapbt_mark_bitmap() 320 bmp = &cr->refcbt_owned; in xchk_rmapbt_mark_bitmap() 324 if (!bmp) in xchk_rmapbt_mark_bitmap() 327 if (xagb_bitmap_test(bmp, irec->rm_startblock, &fsbcount)) { in xchk_rmapbt_mark_bitmap() 348 return xagb_bitmap_clear(bmp, irec->rm_startblock, irec->rm_blockcount); in xchk_rmapbt_mark_bitmap()
|
| /linux/drivers/gpu/drm/nouveau/ |
| H A D | nouveau_bios.c | 1086 uint8_t *bmp = &bios->data[offset], bmp_version_major, bmp_version_minor; in parse_bmp_structure() local 1096 bmp_version_major = bmp[5]; in parse_bmp_structure() 1097 bmp_version_minor = bmp[6]; in parse_bmp_structure() 1163 if (nv_cksum(bmp, 8)) { in parse_bmp_structure() 1174 bios->feature_byte = bmp[9]; in parse_bmp_structure() 1181 bios->init_script_tbls_ptr = ROM16(bmp[legacy_scripts_offset]); in parse_bmp_structure() 1182 bios->extra_init_script_tbl_ptr = ROM16(bmp[legacy_scripts_offset + 2]); in parse_bmp_structure() 1185 bios->legacy.mem_init_tbl_ptr = ROM16(bmp[24]); in parse_bmp_structure() 1186 bios->legacy.sdr_seq_tbl_ptr = ROM16(bmp[26]); in parse_bmp_structure() 1187 bios->legacy.ddr_seq_tbl_ptr = ROM16(bmp[28]); in parse_bmp_structure() [all …]
|
| /linux/drivers/ps3/ |
| H A D | ps3-vuart.c | 104 const struct ports_bmp *bmp, const char *func, int line) in _dump_ports_bmp() argument 106 pr_debug("%s:%d: ports_bmp: %016llxh\n", func, line, bmp->status); in _dump_ports_bmp() 862 struct ports_bmp *bmp; member 886 dump_ports_bmp(bus_priv->bmp); in ps3_vuart_irq_handler() 888 port = (BITS_PER_LONG - 1) - __ilog2(bus_priv->bmp->status); in ps3_vuart_irq_handler() 915 BUG_ON(vuart_bus_priv.bmp); in ps3_vuart_bus_interrupt_get() 917 vuart_bus_priv.bmp = kzalloc_obj(struct ports_bmp); in ps3_vuart_bus_interrupt_get() 919 if (!vuart_bus_priv.bmp) { in ps3_vuart_bus_interrupt_get() 924 result = ps3_vuart_irq_setup(PS3_BINDING_CPU_ANY, vuart_bus_priv.bmp, in ps3_vuart_bus_interrupt_get() 950 kfree(vuart_bus_priv.bmp); in ps3_vuart_bus_interrupt_get() [all …]
|
| /linux/net/xfrm/ |
| H A D | xfrm_replay.c | 245 if (replay_esn->bmp[nr] & (1U << bitnr)) in xfrm_replay_check_bmp() 278 replay_esn->bmp[nr] &= ~(1U << bitnr); in xfrm_replay_advance_bmp() 283 replay_esn->bmp[i] = 0; in xfrm_replay_advance_bmp() 299 replay_esn->bmp[nr] |= (1U << bitnr); in xfrm_replay_advance_bmp() 498 if (replay_esn->bmp[nr] & (1U << bitnr)) in xfrm_replay_check_esn() 579 replay_esn->bmp[nr] &= ~(1U << bitnr); in xfrm_replay_advance_esn() 584 replay_esn->bmp[i] = 0; in xfrm_replay_advance_esn() 605 replay_esn->bmp[nr] |= (1U << bitnr); in xfrm_replay_advance_esn()
|
| /linux/drivers/vfio/pci/pds/ |
| H A D | dirty.c | 383 const void *bmp; in pds_vfio_dirty_seq_ack() local 389 bmp = (void *)((u64)seq_ack_bmp + offset); in pds_vfio_dirty_seq_ack() 390 page_offset = offset_in_page(bmp); in pds_vfio_dirty_seq_ack() 391 bmp -= page_offset; in pds_vfio_dirty_seq_ack() 404 struct page *page = vmalloc_to_page(bmp); in pds_vfio_dirty_seq_ack() 412 bmp += PAGE_SIZE; in pds_vfio_dirty_seq_ack()
|
| /linux/net/netfilter/ |
| H A D | nf_conntrack_h323_asn1.c | 518 unsigned int ext, bmp, i, opt, len = 0, bmp2, bmp2_len; in decode_seq() local 538 bmp = get_bitmap(bs, f->sz); in decode_seq() 540 *(unsigned int *)base = bmp; in decode_seq() 551 if (!((0x80000000U >> (opt++)) & bmp)) /* Not exist */ in decode_seq() 597 bmp |= bmp2 >> f->sz; in decode_seq() 599 *(unsigned int *)base = bmp; in decode_seq()
|
| /linux/fs/ntfs3/ |
| H A D | index.c | 1497 struct ATTRIB *bmp, *alloc; in indx_add_allocate() local 1501 err = indx_find_free(indx, ni, &bit, &bmp); in indx_add_allocate() 1506 bmp = NULL; in indx_add_allocate() 1508 if (bmp->non_res) { in indx_add_allocate() 1509 bmp_size = le64_to_cpu(bmp->nres.data_size); in indx_add_allocate() 1510 bmp_size_v = le64_to_cpu(bmp->nres.valid_size); in indx_add_allocate() 1512 bmp_size = bmp_size_v = le32_to_cpu(bmp->res.data_size); in indx_add_allocate() 1530 if (bmp) { in indx_add_allocate() 1543 if (bmp) in indx_add_allocate() 1557 if (bmp) in indx_add_allocate()
|
| /linux/drivers/net/ethernet/freescale/enetc/ |
| H A D | enetc_hw.h | 188 #define ENETC_PVCLCTR_OVTPIDL(bmp) ((bmp) & 0xff) /* VLAN_TYPE */ argument 208 #define ENETC_PSICFGR0_SIVC(bmp) (((bmp) & 0xff) << 24) /* VLAN_TYPE */ argument
|
| /linux/arch/arm/boot/dts/aspeed/ |
| H A D | aspeed-bmc-opp-tacoma.dts | 102 io-channels = <&bmp 1>; 471 bmp: bmp280@77 { label
|