Searched refs:block (Results 401 - 425 of 1032) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_fw_update.c265 * ice_write_one_nvm_block - Write an NVM block and await completion response
269 * @block_size: size of the block to write, up to 4k
270 * @block: pointer to block of data to write
275 * Write a block of data to a flash module, and await for the completion
290 u16 block_size, u8 *block, bool last_cmd,
301 dev_dbg(dev, "Writing block of %u bytes for module 0x%02x at offset %u\n",
306 err = ice_aq_update_nvm(hw, module, offset, block_size, block,
309 dev_err(dev, "Failed to flash module 0x%02x with block of size %u at offset %u, err %d aq_err %s\n",
324 dev_err(dev, "Timed out while trying to flash module 0x%02x with block o
289 ice_write_one_nvm_block(struct ice_pf *pf, u16 module, u32 offset, u16 block_size, u8 *block, bool last_cmd, u8 *reset_level, struct netlink_ext_ack *extack) argument
407 u8 *block; local
[all...]
/linux-master/drivers/platform/chrome/
H A Dcros_ec_vbc.c72 const size_t data_sz = sizeof(params->block);
84 memcpy(params->block, buf, data_sz);
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_umc.h27 * is the index of 4KB block
32 * is the index of 8KB block
37 * is the index of 8KB block
40 /* channel index is the index of 256B block */
42 /* offset in 256B block */
108 enum amdgpu_ras_block block, uint32_t reset);
110 enum amdgpu_ras_block block, uint16_t pasid,
H A Dgfx_v11_0_3.c52 /* Use RLC_RLCS_FED_STATUS_0/1 to distinguish FED error block. */
60 dev_err(adev->dev, "Gfx or sdma ras block not initialized, rlc_status0:0x%x.\n",
72 adev->virt.ops->ras_poison_handler(adev, ras_if->block);
/linux-master/fs/ocfs2/
H A Dsuballoc.h40 u64 ac_max_block; /* Highest block number to allocate. 0 is
144 static inline u64 ocfs2_which_suballoc_group(u64 block, unsigned int bit) argument
146 u64 group = block - (u64) bit;
154 /* This should work for all block group descriptors as only
161 /* the rest of the block groups are located at the beginning
179 /* given a cluster offset, calculate which block group it belongs to
180 * and return that block offset. */
186 * without going readonly should read the block with ocfs2_read_block[s]()
194 * Read a group descriptor block into *bh. If *bh is NULL, a bh will be
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dmm.h34 int nvkm_mm_init(struct nvkm_mm *, u8 heap, u32 offset, u32 length, u32 block);
/linux-master/drivers/net/wireless/st/cw1200/
H A Dfwio.c53 int ret, block, num_blocks; local
180 for (block = 0; block < num_blocks; block++) {
207 /* calculate the block size */
218 /* send the block to sram */
224 pr_err("Can't write firmware block @ %d!\n",
/linux-master/drivers/w1/slaves/
H A Dw1_ds28e04.c72 int block)
75 int off = block * W1_PAGE_SIZE;
77 if (data->validcrc & (1 << block))
91 /* cache the block if the CRC is valid */
93 data->validcrc |= (1 << block);
245 /* make sure the block CRCs are valid */
71 w1_f1C_refresh_block(struct w1_slave *sl, struct w1_f1C_data *data, int block) argument
H A Dw1_ds2433.c85 int block)
88 int off = block * W1_PAGE_SIZE;
90 if (test_bit(block, data->validcrc))
104 /* cache the block if the CRC is valid */
106 set_bit(block, data->validcrc);
245 /* make sure the block CRCs are valid */
84 w1_f23_refresh_block(struct w1_slave *sl, struct w1_f23_data *data, int block) argument
/linux-master/drivers/mtd/
H A Dmtdblock.c3 * Direct MTD block device access
39 * sectors for each block write requests. To avoid over-erasing flash sectors
52 * First, let's erase the flash block.
100 * If this cache_offset points to a bad block, data cannot be
231 unsigned long block, char *buf)
234 return do_cached_read(mtdblk, block<<9, 512, buf);
238 unsigned long block, char *buf)
250 return do_cached_write(mtdblk, block<<9, 512, buf);
265 pr_warn_ratelimited("%s: MTD device '%s' is NAND, please consider using UBI block devices instead.\n",
361 MODULE_DESCRIPTION("Caching read/erase/writeback block devic
230 mtdblock_readsect(struct mtd_blktrans_dev *dev, unsigned long block, char *buf) argument
237 mtdblock_writesect(struct mtd_blktrans_dev *dev, unsigned long block, char *buf) argument
[all...]
/linux-master/drivers/gpio/
H A Dgpio-ts5500.c102 * TS-5500 DIO1 block
131 * TS-5500 DIO2 block
158 * TS-5500 LCD port used as DIO block
264 const struct ts5500_dio *block = priv->pinout; local
265 const struct ts5500_dio line = block[offset];
316 enum ts5500_blocks block = platform_get_device_id(pdev)->driver_data; local
345 switch (block) {
/linux-master/fs/freevxfs/
H A Dvxfs_inode.c141 u_long block, offset; local
148 block = extent + ((ino * VXFS_ISIZE) / sbp->s_blocksize);
150 bp = sb_bread(sbp, block);
166 printk(KERN_WARNING "vxfs: unable to read block %ld\n", block);
/linux-master/drivers/i2c/busses/
H A Di2c-powermac.c81 buf = data->block;
82 len = data->block[0] + 1;
85 buf = &data->block[1];
86 len = data->block[0];
H A Di2c-nforce2.c222 len = data->block[0];
225 "Transaction failed (requested block size: %d)\n",
231 outb_p(data->block[i + 1],
267 "Transaction failed (received block size: 0x%02x)\n",
272 data->block[i + 1] = inb_p(NVIDIA_SMB_DATA + i);
273 data->block[0] = len;
/linux-master/fs/gfs2/
H A Ddir.h49 int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
/linux-master/arch/x86/include/asm/
H A Damd_nb.h33 unsigned int block; /* Number within bank */ member in struct:threshold_block
34 unsigned int bank; /* MCA bank the block belongs to */
36 u32 address; /* MSR address for the block */
/linux-master/include/linux/lockd/
H A Dlockd.h168 * This is a server block (i.e. a lock requested by some client which
183 unsigned int b_id; /* block id */
188 unsigned int b_flags; /* block flags */
216 void nlmclnt_prepare_block(struct nlm_wait *block, struct nlm_host *host,
218 void nlmclnt_queue_block(struct nlm_wait *block);
219 __be32 nlmclnt_dequeue_block(struct nlm_wait *block);
220 int nlmclnt_wait(struct nlm_wait *block, struct nlm_rqst *req, long timeout);
269 * A return value != 0 means destroy the lock/block/share
H A Dxdr.h68 u32 block; member in struct:nlm_args
/linux-master/arch/mips/kernel/
H A Dmips-cm.c298 unsigned int vp, unsigned int block)
313 val |= FIELD_PREP(CM_GCR_Cx_OTHER_BLOCK, block);
316 WARN_ON(block != CM_GCR_Cx_OTHER_BLOCK_LOCAL);
332 WARN_ON(block != CM_GCR_Cx_OTHER_BLOCK_LOCAL);
297 mips_cm_lock_other(unsigned int cluster, unsigned int core, unsigned int vp, unsigned int block) argument
/linux-master/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_int_process_v11.c194 enum amdgpu_ras_block block = 0; local
215 block = AMDGPU_RAS_BLOCK__GFX;
221 block = AMDGPU_RAS_BLOCK__GFX;
230 amdgpu_amdkfd_ras_poison_consumption_handler(dev->adev, block, reset);
H A Dkfd_int_process_v10.c135 enum amdgpu_ras_block block = 0; local
156 block = AMDGPU_RAS_BLOCK__GFX;
165 block = AMDGPU_RAS_BLOCK__SDMA;
186 amdgpu_amdkfd_ras_poison_consumption_handler(dev->adev, block, reset);
/linux-master/drivers/gpu/drm/amd/display/dc/resource/dcn21/
H A Ddcn21_resource.c105 #define SRI(reg_name, block, id)\
106 .reg_name = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
107 mm ## block ## id ## _ ## reg_name
109 #define SRIR(var_name, reg_name, block, id)\
110 .var_name = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
111 mm ## block ## id ## _ ## reg_name
113 #define SRII(reg_name, block, id)\
114 .reg_name[id] = BASE(mm ## block ## id ## _ ## reg_name ## _BASE_IDX) + \
115 mm ## block ## id ## _ ## reg_name
117 #define DCCG_SRII(reg_name, block, i
[all...]
/linux-master/include/sound/
H A Dsoundfont.h37 struct snd_util_memblk *block; /* allocated data block */ member in struct:snd_sf_sample
/linux-master/drivers/md/dm-vdo/
H A DMakefile10 block-map.o \
/linux-master/fs/xfs/
H A Dxfs_log_priv.h265 * checkpoint is still in the process of committing, we can block waiting for
316 * can block on log pushes. Hence if we have to regrant log space during a log
358 * new threshold at which we block committing transactions until the background
360 * limit, it forces the process committing a transaction to the CIL to block and
394 * The reservation head lsn is not made up of a cycle number and block number.
416 xfs_daddr_t l_logBBstart; /* start block of log */
420 /* The following block of fields are changed while holding icloglock */
429 * block increment */
430 int l_curr_block; /* current logical log block */
431 int l_prev_block; /* previous logical log block */
531 xlog_crack_atomic_lsn(atomic64_t *lsn, uint *cycle, uint *block) argument
543 xlog_assign_atomic_lsn(atomic64_t *lsn, uint cycle, uint block) argument
[all...]

Completed in 195 milliseconds

<<11121314151617181920>>