/kernel/linux/linux-5.10/mm/ |
H A D | percpu.c | 336 * @bit_off: chunk offset 341 * next hint. It modifies bit_off and bits in-place to be consumed in the 344 static void pcpu_next_md_free_region(struct pcpu_chunk *chunk, int *bit_off, in pcpu_next_md_free_region() argument 347 int i = pcpu_off_to_block_index(*bit_off); in pcpu_next_md_free_region() 348 int block_off = pcpu_off_to_block_off(*bit_off); in pcpu_next_md_free_region() 373 *bit_off = pcpu_block_off_to_off(i, in pcpu_next_md_free_region() 381 *bit_off = (i + 1) * PCPU_BITMAP_BLOCK_BITS - block->right_free; in pcpu_next_md_free_region() 390 * @bit_off: chunk offset 400 int align, int *bit_off, int *bits) in pcpu_next_fit_region() 402 int i = pcpu_off_to_block_index(*bit_off); in pcpu_next_fit_region() 399 pcpu_next_fit_region(struct pcpu_chunk *chunk, int alloc_bits, int align, int *bit_off, int *bits) pcpu_next_fit_region() argument 668 pcpu_block_update_scan(struct pcpu_chunk *chunk, int bit_off, int bits) pcpu_block_update_scan() argument 704 int bit_off, bits; pcpu_chunk_refresh_hint() local 765 pcpu_block_update_hint_alloc(struct pcpu_chunk *chunk, int bit_off, int bits) pcpu_block_update_hint_alloc() argument 912 pcpu_block_update_hint_free(struct pcpu_chunk *chunk, int bit_off, int bits) pcpu_block_update_hint_free() argument 1022 pcpu_is_populated(struct pcpu_chunk *chunk, int bit_off, int bits, int *next_off) pcpu_is_populated() argument 1062 int bit_off, bits, next_off; pcpu_find_block_fit() local 1173 int bit_off, end, oslot; pcpu_alloc_area() local 1230 int bit_off, bits, end, oslot, freed; pcpu_free_area() local [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/ |
H A D | pinctrl-digicolor.c | 129 int bit_off, reg_off; in dc_set_mux() local 132 dc_client_sel(group, ®_off, &bit_off); in dc_set_mux() 135 reg &= ~(3 << bit_off); in dc_set_mux() 136 reg |= (selector << bit_off); in dc_set_mux() 147 int bit_off, reg_off; in dc_pmx_request_gpio() local 150 dc_client_sel(offset, ®_off, &bit_off); in dc_pmx_request_gpio() 153 if ((reg & (3 << bit_off)) != 0) in dc_pmx_request_gpio() 171 int bit_off = gpio % PINS_PER_COLLECTION; in dc_gpio_direction_input() local 177 drive &= ~BIT(bit_off); in dc_gpio_direction_input() 191 int bit_off in dc_gpio_direction_output() local 210 int bit_off = gpio % PINS_PER_COLLECTION; dc_gpio_get() local 222 int bit_off = gpio % PINS_PER_COLLECTION; dc_gpio_set() local [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/ |
H A D | pinctrl-digicolor.c | 130 int bit_off, reg_off; in dc_set_mux() local 133 dc_client_sel(group, ®_off, &bit_off); in dc_set_mux() 136 reg &= ~(3 << bit_off); in dc_set_mux() 137 reg |= (selector << bit_off); in dc_set_mux() 148 int bit_off, reg_off; in dc_pmx_request_gpio() local 151 dc_client_sel(offset, ®_off, &bit_off); in dc_pmx_request_gpio() 154 if ((reg & (3 << bit_off)) != 0) in dc_pmx_request_gpio() 172 int bit_off = gpio % PINS_PER_COLLECTION; in dc_gpio_direction_input() local 178 drive &= ~BIT(bit_off); in dc_gpio_direction_input() 192 int bit_off in dc_gpio_direction_output() local 211 int bit_off = gpio % PINS_PER_COLLECTION; dc_gpio_get() local 223 int bit_off = gpio % PINS_PER_COLLECTION; dc_gpio_set() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/disp/dpu1/ |
H A D | dpu_hw_vbif.c | 60 u32 bit_off; in dpu_hw_set_mem_type() local 78 bit_off = (xin_id & 0x7) * 4; in dpu_hw_set_mem_type() 80 reg_val &= ~(0x7 << bit_off); in dpu_hw_set_mem_type() 81 reg_val |= (value & 0x7) << bit_off; in dpu_hw_set_mem_type() 91 u32 bit_off; in dpu_hw_set_limit_conf() local 99 bit_off = (xin_id % 4) * 8; in dpu_hw_set_limit_conf() 101 reg_val &= ~(0xFF << bit_off); in dpu_hw_set_limit_conf() 102 reg_val |= (limit) << bit_off; in dpu_hw_set_limit_conf() 112 u32 bit_off; in dpu_hw_get_limit_conf() local 121 bit_off in dpu_hw_get_limit_conf() [all...] |
H A D | dpu_hw_top.c | 70 u32 reg_off, bit_off; in dpu_hw_setup_clk_force_ctrl() local 83 bit_off = mdp->caps->clk_ctrls[clk_ctrl].bit_off; in dpu_hw_setup_clk_force_ctrl() 88 new_val = reg_val | BIT(bit_off); in dpu_hw_setup_clk_force_ctrl() 90 new_val = reg_val & ~BIT(bit_off); in dpu_hw_setup_clk_force_ctrl() 94 clk_forced_on = !(reg_val & BIT(bit_off)); in dpu_hw_setup_clk_force_ctrl()
|
/kernel/linux/linux-6.6/mm/ |
H A D | percpu.c | 320 int bit_off = ALIGN(block->contig_hint_start, align) - in pcpu_check_block_hint() local 323 return bit_off + bits <= block->contig_hint; in pcpu_check_block_hint() 357 * @bit_off: chunk offset 362 * next hint. It modifies bit_off and bits in-place to be consumed in the 365 static void pcpu_next_md_free_region(struct pcpu_chunk *chunk, int *bit_off, in pcpu_next_md_free_region() argument 368 int i = pcpu_off_to_block_index(*bit_off); in pcpu_next_md_free_region() 369 int block_off = pcpu_off_to_block_off(*bit_off); in pcpu_next_md_free_region() 394 *bit_off = pcpu_block_off_to_off(i, in pcpu_next_md_free_region() 402 *bit_off = (i + 1) * PCPU_BITMAP_BLOCK_BITS - block->right_free; in pcpu_next_md_free_region() 411 * @bit_off 420 pcpu_next_fit_region(struct pcpu_chunk *chunk, int alloc_bits, int align, int *bit_off, int *bits) pcpu_next_fit_region() argument 712 pcpu_block_update_scan(struct pcpu_chunk *chunk, int bit_off, int bits) pcpu_block_update_scan() argument 748 int bit_off, bits; pcpu_chunk_refresh_hint() local 808 pcpu_block_update_hint_alloc(struct pcpu_chunk *chunk, int bit_off, int bits) pcpu_block_update_hint_alloc() argument 963 pcpu_block_update_hint_free(struct pcpu_chunk *chunk, int bit_off, int bits) pcpu_block_update_hint_free() argument 1073 pcpu_is_populated(struct pcpu_chunk *chunk, int bit_off, int bits, int *next_off) pcpu_is_populated() argument 1114 int bit_off, bits, next_off; pcpu_find_block_fit() local 1222 int bit_off, end, oslot; pcpu_alloc_area() local 1279 int bit_off, bits, end, oslot, freed; pcpu_free_area() local [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/sunplus/ |
H A D | sppctl.c | 113 u32 bit_off; in sppctl_get_reg_and_bit_offset() local 117 bit_off = offset % 32; in sppctl_get_reg_and_bit_offset() 119 return bit_off; in sppctl_get_reg_and_bit_offset() 124 u32 bit_off; in sppctl_get_moon_reg_and_bit_offset() local 133 bit_off = offset % 16; in sppctl_get_moon_reg_and_bit_offset() 135 return bit_off; in sppctl_get_moon_reg_and_bit_offset() 140 u32 bit_off; in sppctl_prep_moon_reg_and_offset() local 142 bit_off = sppctl_get_moon_reg_and_bit_offset(offset, reg_off); in sppctl_prep_moon_reg_and_offset() 144 return SPPCTL_SET_MOON_REG_BIT(bit_off); in sppctl_prep_moon_reg_and_offset() 146 return SPPCTL_CLR_MOON_REG_BIT(bit_off); in sppctl_prep_moon_reg_and_offset() 226 sppctl_gmx_set(struct sppctl_pdata *pctl, u8 reg_off, u8 bit_off, u8 bit_sz, u8 val) sppctl_gmx_set() argument 263 u32 reg_off, bit_off, reg; sppctl_first_get() local 298 u32 reg_off, bit_off, reg; sppctl_master_get() local 309 u32 reg_off, bit_off, reg; sppctl_first_master_set() local 363 u32 reg_off, bit_off, reg; sppctl_gpio_output_od_get() local 384 u32 reg_off, bit_off, reg; sppctl_gpio_get_direction() local 395 u32 reg_off, bit_off, reg; sppctl_gpio_inv_get() local 455 u32 reg_off, bit_off, reg; sppctl_gpio_get() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/disp/dpu1/ |
H A D | dpu_hw_vbif.c | 60 u32 bit_off; in dpu_hw_set_mem_type() local 78 bit_off = (xin_id & 0x7) * 4; in dpu_hw_set_mem_type() 80 reg_val &= ~(0x7 << bit_off); in dpu_hw_set_mem_type() 81 reg_val |= (value & 0x7) << bit_off; in dpu_hw_set_mem_type() 91 u32 bit_off; in dpu_hw_set_limit_conf() local 99 bit_off = (xin_id % 4) * 8; in dpu_hw_set_limit_conf() 101 reg_val &= ~(0xFF << bit_off); in dpu_hw_set_limit_conf() 102 reg_val |= (limit) << bit_off; in dpu_hw_set_limit_conf() 112 u32 bit_off; in dpu_hw_get_limit_conf() local 121 bit_off in dpu_hw_get_limit_conf() [all...] |
H A D | dpu_hw_catalog.c | 133 .reg_off = 0x2AC, .bit_off = 0}, 135 .reg_off = 0x2B4, .bit_off = 0}, 137 .reg_off = 0x2BC, .bit_off = 0}, 139 .reg_off = 0x2C4, .bit_off = 0}, 141 .reg_off = 0x2AC, .bit_off = 8}, 143 .reg_off = 0x2B4, .bit_off = 8}, 145 .reg_off = 0x2BC, .bit_off = 8}, 147 .reg_off = 0x2C4, .bit_off = 8}, 158 .reg_off = 0x2AC, .bit_off = 0}, 160 .reg_off = 0x2AC, .bit_off [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/disp/dpu1/catalog/ |
H A D | dpu_3_0_msm8998.h | 29 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 31 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 32 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 33 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 34 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 35 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2c4, .bit_off = 8 }, 36 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 12 }, 37 [DPU_CLK_CTRL_CURSOR0] = { .reg_off = 0x3a8, .bit_off = 16 }, 38 [DPU_CLK_CTRL_CURSOR1] = { .reg_off = 0x3b0, .bit_off [all...] |
H A D | dpu_9_0_sm8550.h | 27 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x4330, .bit_off = 0 }, 28 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x6330, .bit_off = 0 }, 29 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x8330, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0xa330, .bit_off = 0 }, 31 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x24330, .bit_off = 0 }, 32 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x26330, .bit_off = 0 }, 33 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x28330, .bit_off = 0 }, 34 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2a330, .bit_off = 0 }, 35 [DPU_CLK_CTRL_DMA4] = { .reg_off = 0x2c330, .bit_off = 0 }, 36 [DPU_CLK_CTRL_DMA5] = { .reg_off = 0x2e330, .bit_off [all...] |
H A D | dpu_7_0_sm8350.h | 26 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 27 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 28 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 29 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 30 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 31 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 32 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 33 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 }, 34 [DPU_CLK_CTRL_WB2] = { .reg_off = 0x2bc, .bit_off = 16 }, 35 [DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off [all...] |
H A D | dpu_6_0_sm8250.h | 26 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 27 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 28 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 29 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 30 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 31 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 32 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 33 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 }, 34 [DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 }, 35 [DPU_CLK_CTRL_WB2] = { .reg_off = 0x2bc, .bit_off [all...] |
H A D | dpu_8_1_sm8450.h | 27 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 28 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 29 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 31 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 32 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 33 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 34 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 }, 35 [DPU_CLK_CTRL_WB2] = { .reg_off = 0x2bc, .bit_off = 16 }, 36 [DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off [all...] |
H A D | dpu_8_0_sc8280xp.h | 27 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 28 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 29 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 31 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 32 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 33 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 34 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 }, 35 [DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 },
|
H A D | dpu_6_2_sc7180.h | 24 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 25 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 26 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 27 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2c4, .bit_off = 8 }, 28 [DPU_CLK_CTRL_WB2] = { .reg_off = 0x2bc, .bit_off = 16 },
|
H A D | dpu_6_4_sm6350.h | 26 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 27 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 28 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 29 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2c4, .bit_off = 8 }, 30 [DPU_CLK_CTRL_REG_DMA] = { .reg_off = 0x2bc, .bit_off = 20 },
|
H A D | dpu_5_1_sc8180x.h | 29 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 31 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 32 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 33 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 34 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 35 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 36 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 },
|
H A D | dpu_5_0_sm8150.h | 29 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 31 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 32 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 33 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 34 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 35 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 36 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 },
|
H A D | dpu_4_0_sdm845.h | 29 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 30 [DPU_CLK_CTRL_VIG1] = { .reg_off = 0x2b4, .bit_off = 0 }, 31 [DPU_CLK_CTRL_VIG2] = { .reg_off = 0x2bc, .bit_off = 0 }, 32 [DPU_CLK_CTRL_VIG3] = { .reg_off = 0x2c4, .bit_off = 0 }, 33 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 34 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 35 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2bc, .bit_off = 8 }, 36 [DPU_CLK_CTRL_DMA3] = { .reg_off = 0x2c4, .bit_off = 8 },
|
H A D | dpu_7_2_sc7280.h | 24 [DPU_CLK_CTRL_VIG0] = { .reg_off = 0x2ac, .bit_off = 0 }, 25 [DPU_CLK_CTRL_DMA0] = { .reg_off = 0x2ac, .bit_off = 8 }, 26 [DPU_CLK_CTRL_DMA1] = { .reg_off = 0x2b4, .bit_off = 8 }, 27 [DPU_CLK_CTRL_DMA2] = { .reg_off = 0x2c4, .bit_off = 8 }, 28 [DPU_CLK_CTRL_WB2] = { .reg_off = 0x2bc, .bit_off = 16 },
|
/kernel/linux/linux-5.10/fs/ocfs2/ |
H A D | localalloc.h | 41 u32 *bit_off, 47 u32 bit_off,
|
H A D | localalloc.c | 719 u32 *bit_off, in ocfs2_claim_local_alloc_bits() 744 *bit_off = le32_to_cpu(la->la_bm_off) + start; in ocfs2_claim_local_alloc_bits() 774 u32 bit_off, in ocfs2_free_local_alloc_bits() 791 start = bit_off - le32_to_cpu(la->la_bm_off); in ocfs2_free_local_alloc_bits() 956 int bit_off, left, count, start; in ocfs2_sync_local_to_main() local 978 start = count = bit_off = 0; in ocfs2_sync_local_to_main() 981 while ((bit_off = ocfs2_find_next_zero_bit(bitmap, left, start)) in ocfs2_sync_local_to_main() 983 if ((bit_off < left) && (bit_off == start)) { in ocfs2_sync_local_to_main() 1007 if (bit_off > in ocfs2_sync_local_to_main() 715 ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb, handle_t *handle, struct ocfs2_alloc_context *ac, u32 bits_wanted, u32 *bit_off, u32 *num_bits) ocfs2_claim_local_alloc_bits() argument 771 ocfs2_free_local_alloc_bits(struct ocfs2_super *osb, handle_t *handle, struct ocfs2_alloc_context *ac, u32 bit_off, u32 num_bits) ocfs2_free_local_alloc_bits() argument [all...] |
/kernel/linux/linux-6.6/fs/ocfs2/ |
H A D | localalloc.h | 39 u32 *bit_off, 45 u32 bit_off,
|
H A D | localalloc.c | 717 u32 *bit_off, in ocfs2_claim_local_alloc_bits() 742 *bit_off = le32_to_cpu(la->la_bm_off) + start; in ocfs2_claim_local_alloc_bits() 772 u32 bit_off, in ocfs2_free_local_alloc_bits() 789 start = bit_off - le32_to_cpu(la->la_bm_off); in ocfs2_free_local_alloc_bits() 954 int bit_off, left, count, start; in ocfs2_sync_local_to_main() local 979 while ((bit_off = ocfs2_find_next_zero_bit(bitmap, left, start)) in ocfs2_sync_local_to_main() 981 if ((bit_off < left) && (bit_off == start)) { in ocfs2_sync_local_to_main() 1005 if (bit_off >= left) in ocfs2_sync_local_to_main() 1008 start = bit_off in ocfs2_sync_local_to_main() 713 ocfs2_claim_local_alloc_bits(struct ocfs2_super *osb, handle_t *handle, struct ocfs2_alloc_context *ac, u32 bits_wanted, u32 *bit_off, u32 *num_bits) ocfs2_claim_local_alloc_bits() argument 769 ocfs2_free_local_alloc_bits(struct ocfs2_super *osb, handle_t *handle, struct ocfs2_alloc_context *ac, u32 bit_off, u32 num_bits) ocfs2_free_local_alloc_bits() argument [all...] |