Searched refs:block (Results 626 - 650 of 1032) sorted by relevance

<<21222324252627282930>>

/linux-master/fs/
H A Dioctl.c64 sector_t block; local
76 block = ur_block;
77 error = bmap(inode, &block);
79 if (block > INT_MAX) {
89 ur_block = block;
844 /* anon_bdev filesystems may not have a block size */
H A Dmpage.c101 * them. So when the buffer is up to date and the page size == block size,
109 int block = 0; local
127 if (block == page_block) {
134 block++;
333 * @get_block: The filesystem's block mapper function.
359 * because the indirect block has to be read to get the mappings of blocks
363 * BH_Boundary when it maps block 11. BH_Boundary says: mapping of the block
364 * after this one will require I/O against a block which is probably close to
657 * @get_block: the filesystem's block mappe
[all...]
/linux-master/drivers/net/ethernet/qlogic/qed/
H A Dqed_debug.c257 /* DBG block Framing mode definitions */
419 #define NUM_EXTRA_DBG_LINES(block) \
420 (GET_FIELD((block)->flags, DBG_BLOCK_CHIP_HAS_LATENCY_EVENTS) ? 2 : 1)
421 #define NUM_DBG_LINES(block) \
422 ((block)->num_of_dbg_bus_lines + NUM_EXTRA_DBG_LINES(block))
527 /* DBG block framing mode definitions, in descending preference order */
1461 /* Enable / disable the Debug block */
1468 /* Resets the Debug block */
1474 const struct dbg_block_chip *block; local
1506 const struct dbg_block_chip *block = local
1598 const struct dbg_block *block; local
1716 const struct dbg_block_chip *block; local
2728 const struct dbg_block *block; local
3447 const struct dbg_block *block; local
6466 const struct dbg_block_user *block = local
[all...]
/linux-master/include/trace/events/
H A Dbcache.h268 __field(unsigned, block )
274 __entry->block = b->written;
278 TP_printk("bucket %zu written block %u + %u",
279 __entry->bucket, __entry->block, __entry->keys)
/linux-master/fs/hfs/
H A Dbnode.c249 int size, block, i, hash; local
287 block = off >> PAGE_SHIFT;
290 page = read_mapping_page(mapping, block++, NULL);
/linux-master/net/core/
H A Dflow_offload.c289 struct flow_block_cb *flow_block_cb_lookup(struct flow_block *block, argument
294 list_for_each_entry(block_cb, &block->cb_list, list) {
364 block_cb = flow_block_cb_lookup(f->block, cb, cb_ident);
/linux-master/fs/ext2/
H A Dialloc.c31 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
32 * block for inodes, N blocks for the inode table and data blocks.
35 * super block. Each descriptor contains the number of the bitmap block and
36 * the free blocks count in the block.
156 * We perform asynchronous prereading of the new inode's inode block when
163 * stalling the writes while we read the inode block.
171 unsigned long block; local
180 * Figure out the offset within the block group inode table
184 block
[all...]
/linux-master/fs/isofs/
H A Drock.c549 "Can't handle ZF block "
562 * block size)
701 unsigned long block, offset; local
711 block = ei->i_iget5_block;
712 bh = sb_bread(inode->i_sb, block);
791 printk("unable to read i-node block");
/linux-master/drivers/crypto/rockchip/
H A Drk3288_crypto_skcipher.c258 u32 block, conf_reg = 0; local
260 block = crypto_tfm_alg_blocksize(tfm);
262 if (block == DES_BLOCK_SIZE) {
343 /* we backup last block of source to be used as IV at next step */
/linux-master/fs/jbd2/
H A Drecovery.c55 * When reading from the journal, we are going through the block device
82 * a time to the block device IO layer. */
90 printk(KERN_ERR "JBD2: bad block at offset %u\n",
126 * Read a block from the journal
146 printk(KERN_ERR "JBD2: bad block at offset %u\n",
169 printk(KERN_ERR "JBD2: Failed to read block at offset %u\n",
199 * Count the number of in-use tags in a journal descriptor block.
250 jbd2_debug(3, "Fast commit replay: next block %ld\n",
302 jbd2_debug(1, "No recovery required, last transaction %d, head block %u\n",
325 jbd2_debug(1, "JBD2: last transaction %d, head block
390 unsigned long long block = be32_to_cpu(tag->t_blocknr); local
[all...]
H A Drevoke.c21 * for a single block, only the last one counts, and if there is a log
22 * entry for a block beyond the last revoke, then that log entry still
29 * The desired end result is the journaling of the new block, so we
33 * The revoke must take precedence over the write of the block, so we
35 * later in the log than the log block. In this case, we choose the
36 * latter: journaling a block cancels any revoke record for that block
37 * in the current transaction, so any revoke for that block in the
38 * transaction must have happened after the block was journaled and so
98 /* Each revoke record represents one single revoked block
131 hash(journal_t *journal, unsigned long long block) argument
[all...]
/linux-master/drivers/md/
H A Draid5-cache.c21 * metadata/data stored in disk with 4k size unit (a block) regardless
203 * an IO range starts from a meta data block and end at the next meta data
204 * block. The io unit's the meta data block tracks data/parity followed it. io
212 struct page *meta_page; /* store meta block */
711 struct r5l_meta_block *block; local
719 block = page_address(io->meta_page);
720 block->meta_size = cpu_to_le32(io->meta_offset);
721 crc = crc32c_le(log->uuid_checksum, block, PAGE_SIZE);
722 block
769 struct r5l_meta_block *block; local
[all...]
/linux-master/fs/xfs/libxfs/
H A Dxfs_bmap_btree.c411 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp); local
415 if (!xfs_verify_magic(bp, block->bb_magic))
435 level = be16_to_cpu(block->bb_level);
591 /* Calculate number of records in a block mapping btree block. */
646 * Calculate number of records in a bmap btree block.
H A Dxfs_ialloc_btree.c81 /* Update the inode btree block counter for this btree. */
108 xfs_alloc_arg_t args; /* block allocation args */
294 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp); local
298 if (!xfs_verify_magic(bp, block->bb_magic))
318 level = be16_to_cpu(block->bb_level);
561 /* Calculate number of records in an inode btree block. */
573 * Calculate number of records in an inobt btree block.
760 /* Read finobt block count from AGI header. */
/linux-master/net/sched/
H A Dsch_fq_pie.c57 struct tcf_block *block; member in struct:fq_pie_sched_data
443 err = tcf_block_get(&q->block, &q->filter_list, sch, extack);
554 tcf_block_put(q->block);
/linux-master/sound/pci/emu10k1/
H A Dmemory.c91 * if an empty region is found, return the page and store the next mapped block
130 * map a memory block onto emu10k1's PTB
146 /* insert this block in the proper position of mapped list */
148 /* append this as a newest block in order list */
160 * unmap the block
201 * search empty pages with the given size, and create a memory block
203 * unlike synth_alloc the memory block is aligned to the page start
214 list_for_each(p, &emu->memhdr->block) {
224 /* create a new memory block */
253 * map the given memory block o
[all...]
/linux-master/fs/ocfs2/
H A Docfs2_trace.h2686 TP_PROTO(unsigned long long block, void *ci),
2687 TP_ARGS(block, ci),
2689 __field(unsigned long long, block)
2693 __entry->block = block;
2696 TP_printk("%llu %p", __entry->block, __entry->ci)
2700 TP_PROTO(void *ci, unsigned long long block,
2702 TP_ARGS(ci, block, nr, flags),
2705 __field(unsigned long long, block)
2711 __entry->block
[all...]
/linux-master/sound/pci/ice1712/
H A Dprodigy_hifi.c173 unsigned int block; local
181 block = (reg << 9) | (data & 0x1ff);
182 wm8766_spi_send_word(ice, block); /* REGISTER ADDRESS */
213 unsigned int block; local
219 block = ((AK4396_ADDR & 0x03) << 14) | (1 << 13) |
221 ak4396_send_word(ice, block); /* REGISTER ADDRESS */
/linux-master/drivers/infiniband/hw/bnxt_re/
H A Dqplib_sp.c420 bool block)
456 sizeof(resp), block);
466 bool block)
482 sizeof(resp), block);
566 bool block)
580 sizeof(resp), block);
419 bnxt_qplib_create_ah(struct bnxt_qplib_res *res, struct bnxt_qplib_ah *ah, bool block) argument
465 bnxt_qplib_destroy_ah(struct bnxt_qplib_res *res, struct bnxt_qplib_ah *ah, bool block) argument
565 bnxt_qplib_dereg_mrw(struct bnxt_qplib_res *res, struct bnxt_qplib_mrw *mrw, bool block) argument
/linux-master/drivers/firewire/
H A Dcore-device.c85 static int textual_leaf_to_string(const u32 *block, char *buf, size_t size) argument
93 quadlets = min(block[0] >> 16, 256U);
97 if (block[1] != 0 || block[2] != 0)
101 block += 3;
104 c = block[i / 4] >> (24 - 8 * (i % 4));
577 * Read the bus info block, perform a speed probe, and read all of the rest of
602 /* First read the bus info block. */
628 * Note, we cannot use the bus info block's link_spd as starting point
661 * Pop the next block referenc
[all...]
/linux-master/drivers/net/ethernet/google/gve/
H A Dgve_tx.c977 bool gve_xdp_poll(struct gve_notify_block *block, int budget) argument
979 struct gve_priv *priv = block->priv;
980 struct gve_tx_ring *tx = block->tx;
1006 bool gve_tx_poll(struct gve_notify_block *block, int budget) argument
1008 struct gve_priv *priv = block->priv;
1009 struct gve_tx_ring *tx = block->tx;
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu.h593 /* MM block clocks */
740 enum amd_hw_ip_block_type block,
743 enum amd_hw_ip_block_type block,
1303 #define RREG32_AUDIO_ENDPT(block, reg) adev->audio_endpt_rreg(adev, (block), (reg))
1304 #define WREG32_AUDIO_ENDPT(block, reg, v) adev->audio_endpt_wreg(adev, (block), (reg), (v))
/linux-master/fs/ext4/
H A Dextents.c161 /* path points to block */
194 /* path points to block */
212 ext4_lblk_t block)
219 * Try to predict block placement assuming that we are
240 if (block > ext_block)
241 return ext_pblk + (block - ext_block);
243 return ext_pblk - (ext_block - block);
247 * try to find starting block from index itself */
257 * Allocation for a meta data block
365 ext4_fsblk_t block local
210 ext4_ext_find_goal(struct inode *inode, struct ext4_ext_path *path, ext4_lblk_t block) argument
382 ext4_fsblk_t block = ext4_idx_pblock(ext_idx); local
751 ext4_ext_binsearch_idx(struct inode *inode, struct ext4_ext_path *path, ext4_lblk_t block) argument
812 ext4_ext_binsearch(struct inode *inode, struct ext4_ext_path *path, ext4_lblk_t block) argument
883 ext4_find_extent(struct inode *inode, ext4_lblk_t block, struct ext4_ext_path **orig_path, int flags) argument
2185 ext4_fill_es_cache_info(struct inode *inode, ext4_lblk_t block, ext4_lblk_t num, struct fiemap_extent_info *fieinfo) argument
[all...]
/linux-master/drivers/media/platform/qcom/venus/
H A Dhfi.c438 int hfi_session_flush(struct venus_inst *inst, u32 type, bool block) argument
452 if (block) {
/linux-master/drivers/i2c/busses/
H A Di2c-highlander.c297 dev->buf = &data->block[1];
298 dev->buf_len = data->block[0];

Completed in 368 milliseconds

<<21222324252627282930>>