Searched refs:blksize (Results 1 - 115 of 115) sorted by relevance

/linux-4.4.14/block/partitions/
H A Damiga.c35 int blksize = 1; /* Multiplier for disk block size */ amiga_partition() local
71 /* blksize is blocks per 512 byte standard block */ amiga_partition()
72 blksize = be32_to_cpu( rdb->rdb_BlockBytes ) / 512; amiga_partition()
78 snprintf(tmp, sizeof(tmp), " RDSK (%d)", blksize * 512); amiga_partition()
84 blk *= blksize; /* Read in terms partition table understands */ amiga_partition()
106 blksize; amiga_partition()
112 blksize; amiga_partition()
/linux-4.4.14/fs/xfs/libxfs/
H A Dxfs_attr_remote.c126 int blksize = mp->m_attr_geo->blksize; xfs_attr3_rmt_read_verify() local
135 ASSERT(len >= blksize); xfs_attr3_rmt_read_verify()
138 if (!xfs_verify_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF)) { xfs_attr3_rmt_read_verify()
142 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) { xfs_attr3_rmt_read_verify()
146 len -= blksize; xfs_attr3_rmt_read_verify()
147 ptr += blksize; xfs_attr3_rmt_read_verify()
148 bno += BTOBB(blksize); xfs_attr3_rmt_read_verify()
162 int blksize = mp->m_attr_geo->blksize; xfs_attr3_rmt_write_verify() local
174 ASSERT(len >= blksize); xfs_attr3_rmt_write_verify()
179 if (!xfs_attr3_rmt_verify(mp, ptr, blksize, bno)) { xfs_attr3_rmt_write_verify()
194 xfs_update_cksum(ptr, blksize, XFS_ATTR3_RMT_CRC_OFF); xfs_attr3_rmt_write_verify()
196 len -= blksize; xfs_attr3_rmt_write_verify()
197 ptr += blksize; xfs_attr3_rmt_write_verify()
198 bno += BTOBB(blksize); xfs_attr3_rmt_write_verify()
260 int blksize = mp->m_attr_geo->blksize; xfs_attr_rmtval_copyout() local
262 ASSERT(len >= blksize); xfs_attr_rmtval_copyout()
266 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize); xfs_attr_rmtval_copyout()
284 len -= blksize; xfs_attr_rmtval_copyout()
285 src += blksize; xfs_attr_rmtval_copyout()
286 bno += BTOBB(blksize); xfs_attr_rmtval_copyout()
308 int blksize = mp->m_attr_geo->blksize; xfs_attr_rmtval_copyin() local
310 ASSERT(len >= blksize); xfs_attr_rmtval_copyin()
314 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize); xfs_attr_rmtval_copyin()
326 if (byte_cnt + hdr_size < blksize) { xfs_attr_rmtval_copyin()
328 ASSERT(len == blksize); xfs_attr_rmtval_copyin()
330 blksize - hdr_size - byte_cnt); xfs_attr_rmtval_copyin()
334 len -= blksize; xfs_attr_rmtval_copyin()
335 dst += blksize; xfs_attr_rmtval_copyin()
336 bno += BTOBB(blksize); xfs_attr_rmtval_copyin()
H A Dxfs_attr_leaf.c128 ASSERT(geo->blksize > USHRT_MAX); xfs_attr3_leaf_firstused_from_disk()
129 to->firstused = geo->blksize; xfs_attr3_leaf_firstused_from_disk()
152 ASSERT(from->firstused == geo->blksize); xfs_attr3_leaf_firstused_to_disk()
889 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP); xfs_attr3_leaf_to_shortform()
893 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize); xfs_attr3_leaf_to_shortform()
900 memset(bp->b_addr, 0, args->geo->blksize); xfs_attr3_leaf_to_shortform()
989 memcpy(bp2->b_addr, bp1->b_addr, args->geo->blksize); xfs_attr3_leaf_to_node()
994 xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1); xfs_attr3_leaf_to_node()
1015 xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1); xfs_attr3_leaf_to_node()
1051 memset(leaf, 0, args->geo->blksize); xfs_attr3_leaf_create()
1054 ichdr.firstused = args->geo->blksize; xfs_attr3_leaf_create()
1073 xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_create()
1258 ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize); xfs_attr3_leaf_add_work()
1262 ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize); xfs_attr3_leaf_add_work()
1354 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP); xfs_attr3_leaf_compact()
1355 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize); xfs_attr3_leaf_compact()
1356 memset(bp->b_addr, 0, args->geo->blksize); xfs_attr3_leaf_compact()
1369 ichdr_dst->firstused = args->geo->blksize; xfs_attr3_leaf_compact()
1390 xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_compact()
1577 xfs_trans_log_buf(args->trans, blk1->bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_rebalance()
1578 xfs_trans_log_buf(args->trans, blk2->bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_rebalance()
1675 lastdelta = state->args->geo->blksize; xfs_attr3_leaf_figure_balance()
1773 if (bytes > (state->args->geo->blksize >> 1)) { xfs_attr3_leaf_toosmall()
1827 bytes = state->args->geo->blksize - xfs_attr3_leaf_toosmall()
1828 (state->args->geo->blksize >> 2) - xfs_attr3_leaf_toosmall()
1892 ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8); xfs_attr3_leaf_remove()
1900 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize); xfs_attr3_leaf_remove()
1915 ASSERT(ichdr.freemap[i].base < args->geo->blksize); xfs_attr3_leaf_remove()
1916 ASSERT(ichdr.freemap[i].size < args->geo->blksize); xfs_attr3_leaf_remove()
1993 tmp = args->geo->blksize; xfs_attr3_leaf_remove()
1997 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize); xfs_attr3_leaf_remove()
2080 tmp_leaf = kmem_zalloc(state->args->geo->blksize, KM_SLEEP); xfs_attr3_leaf_unbalance()
2093 tmphdr.firstused = state->args->geo->blksize; xfs_attr3_leaf_unbalance()
2118 memcpy(save_leaf, tmp_leaf, state->args->geo->blksize); xfs_attr3_leaf_unbalance()
2125 state->args->geo->blksize - 1); xfs_attr3_leaf_unbalance()
2171 ASSERT(ichdr.count < args->geo->blksize / 8); xfs_attr3_leaf_lookup_int()
2275 ASSERT(ichdr.count < args->geo->blksize / 8); xfs_attr3_leaf_getvalue()
2353 ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8); xfs_attr3_leaf_moveents()
2356 ASSERT(ichdr_d->count < args->geo->blksize / 8); xfs_attr3_leaf_moveents()
2408 <= args->geo->blksize); xfs_attr3_leaf_moveents()
2412 <= args->geo->blksize); xfs_attr3_leaf_moveents()
2433 ((char *)leaf_s + args->geo->blksize)); xfs_attr3_leaf_moveents()
2448 ((char *)leaf_s + args->geo->blksize)); xfs_attr3_leaf_moveents()
2524 if (size < xfs_attr_leaf_entsize_local_max(args->geo->blksize)) { xfs_attr_leaf_newentsize()
H A Dxfs_dir2.c130 dageo->blksize = 1 << dageo->blklog; xfs_da_mount()
140 dageo->node_ents = (dageo->blksize - nodehdr_size) / xfs_da_mount()
142 dageo->magicpct = (dageo->blksize * 37) / 100; xfs_da_mount()
148 dageo->blksize = 1 << dageo->blklog; xfs_da_mount()
150 dageo->node_ents = (dageo->blksize - nodehdr_size) / xfs_da_mount()
152 dageo->magicpct = (dageo->blksize * 37) / 100; xfs_da_mount()
632 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize; xfs_dir2_isblock()
633 ASSERT(rval == 0 || args->dp->i_d.di_size == args->geo->blksize); xfs_dir2_isblock()
H A Dxfs_dir2.h234 return (xfs_dir2_data_aoff_t)(by & (geo->blksize - 1)); xfs_dir2_byte_to_off()
309 ((char *)hdr + geo->blksize)) - 1; xfs_dir2_block_tail_p()
316 ((char *)lp + geo->blksize - xfs_dir2_leaf_tail_p()
H A Dxfs_da_format.c429 return (geo->blksize - sizeof(struct xfs_dir2_leaf_hdr)) / xfs_dir2_max_leaf_ents()
442 return (geo->blksize - sizeof(struct xfs_dir3_leaf_hdr)) / xfs_dir3_max_leaf_ents()
595 return (geo->blksize - sizeof(struct xfs_dir2_free_hdr)) / xfs_dir2_free_max_bests()
627 return (geo->blksize - sizeof(struct xfs_dir3_free_hdr)) / xfs_dir3_free_max_bests()
H A Dxfs_log_rlimit.c43 size = xfs_attr_leaf_entsize_local_max(mp->m_attr_geo->blksize) - xfs_log_calc_max_attrsetm_res()
H A Dxfs_dir2_block.c946 while (dp->i_d.di_size > args->geo->blksize) { xfs_dir2_leaf_to_block()
952 args->geo->blksize - hdrsz) { xfs_dir2_leaf_to_block()
980 tagp = (__be16 *)((char *)hdr + args->geo->blksize) - 1; xfs_dir2_leaf_to_block()
999 xfs_dir2_data_use_free(args, dbp, dup, args->geo->blksize - size, size, xfs_dir2_leaf_to_block()
1138 xfs_dir2_data_use_free(args, bp, dup, args->geo->blksize - i, xfs_dir2_sf_to_block()
H A Dxfs_da_btree.h34 int blksize; /* da block size in bytes */ member in struct:xfs_da_geometry
H A Dxfs_dir2_data.c98 endp = (char *)hdr + geo->blksize; __xfs_dir3_data_check()
541 endp = (char *)hdr + geo->blksize; xfs_dir2_data_freescan()
631 t = args->geo->blksize - (uint)dp->d_ops->data_entry_offset; xfs_dir3_data_init()
746 endptr = (char *)hdr + args->geo->blksize; xfs_dir2_data_make_free()
H A Dxfs_dir2_leaf.c449 (xfs_dir2_data_aoff_t)((char *)hdr + args->geo->blksize - xfs_dir2_block_to_leaf()
1145 (uint)(args->geo->blksize - 1)); xfs_dir3_leaf_log_tail()
1429 args->geo->blksize - dp->d_ops->data_entry_offset) { xfs_dir2_leaf_removename()
1628 args->geo->blksize - dp->d_ops->data_entry_offset); xfs_dir2_leaf_trim_data()
1740 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + args->geo->blksize) xfs_dir2_node_to_leaf()
1764 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > args->geo->blksize) { xfs_dir2_node_to_leaf()
H A Dxfs_dir2_sf.c577 if (used + (holefit ? 0 : size) > args->geo->blksize) xfs_dir2_sf_addname_pick()
587 if (used + size > args->geo->blksize) xfs_dir2_sf_addname_pick()
635 (uint)sizeof(xfs_dir2_block_tail_t) <= args->geo->blksize); xfs_dir2_sf_check()
H A Dxfs_dir2_node.c331 (uint)dp->i_d.di_size / args->geo->blksize); xfs_dir2_leaf_to_node()
1269 if (longest == args->geo->blksize - xfs_dir2_leafn_remove()
1409 if (bytes > (state->args->geo->blksize >> 1)) { xfs_dir2_leafn_toosmall()
1462 bytes = state->args->geo->blksize - xfs_dir2_leafn_toosmall()
1463 (state->args->geo->blksize >> 2); xfs_dir2_leafn_toosmall()
H A Dxfs_da_btree.c1094 memcpy(root_blk->bp->b_addr, bp->b_addr, args->geo->blksize); xfs_da3_root_join()
1102 args->geo->blksize - 1); xfs_da3_root_join()
2180 memcpy(dead_buf->b_addr, last_buf->b_addr, args->geo->blksize); xfs_da3_swap_lastblock()
2181 xfs_trans_log_buf(tp, dead_buf, 0, args->geo->blksize - 1); xfs_da3_swap_lastblock()
H A Dxfs_attr.c179 if (size > (args->geo->blksize / 2)) { xfs_attr_calc_size()
860 * External routines when attribute list size > geo->blksize
H A Dxfs_trans_resv.c611 xfs_calc_buf_res(1, mp->m_dir_geo->blksize) + xfs_calc_addafork_reservation()
/linux-4.4.14/drivers/base/regmap/
H A Dregcache-lzo.c135 int ret, i, blksize, blkcount; regcache_lzo_init() local
180 blksize = regcache_lzo_get_blksize(map); regcache_lzo_init()
184 for (i = 0; i < blkcount; i++, p += blksize) { regcache_lzo_init()
186 if (p + blksize > end) regcache_lzo_init()
189 lzo_blocks[i]->src_len = blksize; regcache_lzo_init()
239 size_t blksize, tmp_dst_len; regcache_lzo_read() local
247 blksize = regcache_lzo_get_blksize(map); regcache_lzo_read()
278 size_t blksize, tmp_dst_len; regcache_lzo_write() local
286 blksize = regcache_lzo_get_blksize(map); regcache_lzo_write()
/linux-4.4.14/include/linux/
H A Dstat.h33 unsigned long blksize; member in struct:kstat
H A Dnfs_xdr.h143 __u32 blksize; /* preferred pnfs io block size */ member in struct:nfs_fsinfo
/linux-4.4.14/include/net/
H A Ddn_neigh.h15 unsigned long blksize; member in struct:dn_neigh
H A Ddn_dev.h128 __le16 blksize; member in struct:endnode_hello_message
143 __le16 blksize; member in struct:rtnode_hello_message
/linux-4.4.14/drivers/scsi/
H A Dsr_ioctl.c479 * blksize: 2048 | 2336 | 2340 | 2352
482 static int sr_read_cd(Scsi_CD *cd, unsigned char *dest, int lba, int format, int blksize) sr_read_cd() argument
487 sr_printk(KERN_INFO, cd, "sr_read_cd lba=%d format=%d blksize=%d\n", sr_read_cd()
488 lba, format, blksize); sr_read_cd()
499 switch (blksize) { sr_read_cd()
514 cgc.buflen = blksize; sr_read_cd()
524 static int sr_read_sector(Scsi_CD *cd, int lba, int blksize, unsigned char *dest) sr_read_sector() argument
531 rc = sr_read_cd(cd, dest, lba, 0, blksize); sr_read_sector()
540 if (blksize != cd->device->sector_size) { sr_read_sector()
541 if (0 != (rc = sr_set_blocklength(cd, blksize))) sr_read_sector()
545 sr_printk(KERN_INFO, cd, "sr_read_sector lba=%d blksize=%d\n", sr_read_sector()
546 lba, blksize); sr_read_sector()
557 cgc.buflen = blksize; sr_read_sector()
H A Dgdth_proc.c287 pdi->blkcnt/(1024*1024/pdi->blksize), gdth_show_info()
H A Dgdth.h367 u16 blksize; /* size of block in bytes */ member in struct:__anon9385
/linux-4.4.14/drivers/usb/gadget/function/
H A Dstorage_common.c194 unsigned int blksize; fsg_lun_open() local
238 blksize = 2048; fsg_lun_open()
241 blksize = bdev_logical_block_size(inode->i_bdev); fsg_lun_open()
242 blkbits = blksize_bits(blksize); fsg_lun_open()
244 blksize = 512; fsg_lun_open()
268 curlun->blksize = blksize; fsg_lun_open()
H A Dstorage_common.h111 unsigned int blksize; /* logical block size of bound block device */ member in struct:fsg_lun
H A Df_mass_storage.c731 nread = round_down(nread, curlun->blksize); do_read()
904 amount = round_down(amount, curlun->blksize); do_write()
925 nwritten = round_down(nwritten, curlun->blksize); do_write()
1071 nread = round_down(nread, curlun->blksize); do_verify()
1182 put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */ do_read_capacity()
1407 put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */ do_read_format_capacities()
/linux-4.4.14/drivers/s390/block/
H A Ddasd_fba.c88 int blksize, int beg, int nr) define_extent()
101 data->blk_size = blksize; define_extent()
267 unsigned int blksize, off; dasd_fba_build_cp() local
277 blksize = block->bp_block; dasd_fba_build_cp()
286 if (bv.bv_len & (blksize - 1)) rq_for_each_segment()
291 cidaw += bv.bv_len / blksize; rq_for_each_segment()
336 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
353 if (idal_is_needed(dst, blksize)) { rq_for_each_segment()
356 idaws = idal_create_words(idaws, dst, blksize); rq_for_each_segment()
362 dst += blksize; rq_for_each_segment()
387 unsigned int blksize, off; dasd_fba_free_cp() local
393 blksize = cqr->block->bp_block; dasd_fba_free_cp()
401 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
87 define_extent(struct ccw1 * ccw, struct DE_fba_data *data, int rw, int blksize, int beg, int nr) define_extent() argument
H A Ddasd_eckd.c482 unsigned int blksize, unsigned int tlf) prefix_LRE()
576 dedata->blk_size = blksize; prefix_LRE()
615 basedev, blksize, tlf); prefix_LRE()
2157 rpt = recs_per_track(&base_priv->rdc_data, 0, fdata->blksize); dasd_eckd_build_format()
2260 fdata->blksize); dasd_eckd_build_format()
2346 ect->dl = fdata->blksize; dasd_eckd_build_format()
2426 if (dasd_check_blocksize(fdata->blksize) != 0) { dasd_eckd_format_device()
2429 fdata->blksize); dasd_eckd_format_device()
2450 fdata->blksize); dasd_eckd_format_device()
2619 unsigned int blksize) dasd_eckd_build_cp_cmd_single()
2649 if (bv.bv_len & (blksize - 1)) rq_for_each_segment()
2721 last_rec - recid + 1, cmd, basedev, blksize);
2733 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
2737 count = blksize; rq_for_each_segment()
2743 if (count < blksize && rq_for_each_segment()
2746 blksize - count); rq_for_each_segment()
2765 if (idal_is_needed(dst, blksize)) { rq_for_each_segment()
2768 idaws = idal_create_words(idaws, dst, blksize); rq_for_each_segment()
2774 dst += blksize; rq_for_each_segment()
2803 unsigned int blksize) dasd_eckd_build_cp_cmd_track()
2858 tlf *= blksize; dasd_eckd_build_cp_cmd_track()
2863 trkcount, blksize, dasd_eckd_build_cp_cmd_track()
2896 len_to_track_end = count * blksize; rq_for_each_segment()
2972 unsigned int blksize, prepare_itcw()
3015 dedata->blk_size = blksize; prepare_itcw()
3025 dedata->blk_size = blksize; prepare_itcw()
3070 dn = ceil_quot(blksize + 6, 232); prepare_itcw()
3071 d = 9 + ceil_quot(blksize + 6 * (dn + 1), 34); prepare_itcw()
3075 d = 7 + ceil_quot(blksize + 12, 32); prepare_itcw()
3109 unsigned int blksize) dasd_eckd_build_cp_tpm_track()
3166 tlf *= blksize;
3177 trkcount, blksize,
3178 (last_rec - first_rec + 1) * blksize,
3208 len_to_track_end = count * blksize; rq_for_each_segment()
3275 unsigned int blk_per_trk, blksize; dasd_eckd_build_cp() local
3284 blksize = block->bp_block; dasd_eckd_build_cp()
3285 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize); dasd_eckd_build_cp()
3298 if (data_size % blksize) dasd_eckd_build_cp()
3318 blk_per_trk, blksize); dasd_eckd_build_cp()
3329 blk_per_trk, blksize); dasd_eckd_build_cp()
3339 blk_per_trk, blksize); dasd_eckd_build_cp()
3500 unsigned int blksize, blk_per_trk, off; dasd_eckd_free_cp() local
3507 blksize = cqr->block->bp_block; dasd_eckd_free_cp()
3508 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize); dasd_eckd_free_cp()
3517 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
478 prefix_LRE(struct ccw1 *ccw, struct PFX_eckd_data *pfxdata, unsigned int trk, unsigned int totrk, int cmd, struct dasd_device *basedev, struct dasd_device *startdev, unsigned char format, unsigned int rec_on_trk, int count, unsigned int blksize, unsigned int tlf) prefix_LRE() argument
2608 dasd_eckd_build_cp_cmd_single( struct dasd_device *startdev, struct dasd_block *block, struct request *req, sector_t first_rec, sector_t last_rec, sector_t first_trk, sector_t last_trk, unsigned int first_offs, unsigned int last_offs, unsigned int blk_per_trk, unsigned int blksize) dasd_eckd_build_cp_cmd_single() argument
2792 dasd_eckd_build_cp_cmd_track( struct dasd_device *startdev, struct dasd_block *block, struct request *req, sector_t first_rec, sector_t last_rec, sector_t first_trk, sector_t last_trk, unsigned int first_offs, unsigned int last_offs, unsigned int blk_per_trk, unsigned int blksize) dasd_eckd_build_cp_cmd_track() argument
2967 prepare_itcw(struct itcw *itcw, unsigned int trk, unsigned int totrk, int cmd, struct dasd_device *basedev, struct dasd_device *startdev, unsigned int rec_on_trk, int count, unsigned int blksize, unsigned int total_data_size, unsigned int tlf, unsigned int blk_per_trk) prepare_itcw() argument
3098 dasd_eckd_build_cp_tpm_track( struct dasd_device *startdev, struct dasd_block *block, struct request *req, sector_t first_rec, sector_t last_rec, sector_t first_trk, sector_t last_trk, unsigned int first_offs, unsigned int last_offs, unsigned int blk_per_trk, unsigned int blksize) dasd_eckd_build_cp_tpm_track() argument
H A Ddasd_diag.c518 unsigned int blksize, off; dasd_diag_build_cp() local
527 blksize = block->bp_block; dasd_diag_build_cp()
535 if (bv.bv_len & (blksize - 1)) rq_for_each_segment()
556 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
562 dst += blksize; rq_for_each_segment()
H A Ddasd_ioctl.c223 fdata->stop_unit, fdata->blksize, fdata->intensity); dasd_format()
232 bdev->bd_inode->i_blkbits = blksize_bits(fdata->blksize); dasd_format()
/linux-4.4.14/drivers/block/drbd/
H A Ddrbd_protocol.h143 u32 blksize; member in struct:p_block_ack
150 u32 blksize; member in struct:p_block_req
263 u32 blksize; member in struct:p_drbd06_param
272 u32 blksize; member in struct:p_block_desc
H A Ddrbd_main.c1312 * @blksize: size in byte, needs to be in big endian byte order
1316 u64 sector, u32 blksize, u64 block_id) _drbd_send_ack()
1330 p->blksize = blksize; _drbd_send_ack()
1350 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id); drbd_send_ack_rp()
1371 sector_t sector, int blksize, u64 block_id) drbd_send_ack_ex()
1375 cpu_to_be32(blksize), drbd_send_ack_ex()
1391 p->blksize = cpu_to_be32(size); drbd_send_drequest()
1409 p->blksize = cpu_to_be32(size); drbd_send_drequest_csum()
1424 p->blksize = cpu_to_be32(size); drbd_send_ov_request()
1748 p->blksize = cpu_to_be32(req->i.size); drbd_send_out_of_sync()
1315 _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd, u64 sector, u32 blksize, u64 block_id) _drbd_send_ack() argument
1370 drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd, sector_t sector, int blksize, u64 block_id) drbd_send_ack_ex() argument
H A Ddrbd_receiver.c2532 size = be32_to_cpu(p->blksize); receive_DataRequest()
4559 drbd_set_out_of_sync(device, be64_to_cpu(p->sector), be32_to_cpu(p->blksize)); receive_out_of_sync()
5167 int blksize = be32_to_cpu(p->blksize); got_IsInSync() local
5180 drbd_set_in_sync(device, sector, blksize); got_IsInSync()
5182 device->rs_same_csum += (blksize >> BM_BLOCK_SHIFT); got_IsInSync()
5186 atomic_add(blksize >> 9, &device->rs_sect_in); got_IsInSync()
5219 int blksize = be32_to_cpu(p->blksize); got_BlockAck() local
5230 drbd_set_in_sync(device, sector, blksize); got_BlockAck()
5265 int size = be32_to_cpu(p->blksize); got_NegAck()
5310 (unsigned long long)sector, be32_to_cpu(p->blksize)); got_NegDReply()
5331 size = be32_to_cpu(p->blksize); got_NegRSDReply()
5392 size = be32_to_cpu(p->blksize); got_OVResult()
H A Ddrbd_int.h1101 sector_t sector, int blksize, u64 block_id);
/linux-4.4.14/drivers/media/pci/saa7134/
H A Dsaa7134-alsa.c163 if (dev->dmasound.read_count >= dev->dmasound.blksize * (dev->dmasound.blocks-2)) { saa7134_irq_alsa_done()
174 saa_writel(reg,next_blk * dev->dmasound.blksize); saa7134_irq_alsa_done()
177 next_blk * dev->dmasound.blksize, dev->dmasound.blocks, saa7134_irq_alsa_done()
178 dev->dmasound.blksize, dev->dmasound.read_count); saa7134_irq_alsa_done()
182 dev->dmasound.read_count += dev->dmasound.blksize; saa7134_irq_alsa_done()
377 BUG_ON(!dev->dmasound.blksize); dsp_buffer_free()
382 dev->dmasound.blksize = 0; dsp_buffer_free()
548 saa_writeb(SAA7134_NUM_SAMPLES0, ((dev->dmasound.blksize - 1) & 0x0000ff)); snd_card_saa7134_capture_prepare()
549 saa_writeb(SAA7134_NUM_SAMPLES1, ((dev->dmasound.blksize - 1) & 0x00ff00) >> 8); snd_card_saa7134_capture_prepare()
550 saa_writeb(SAA7134_NUM_SAMPLES2, ((dev->dmasound.blksize - 1) & 0xff0000) >> 16); snd_card_saa7134_capture_prepare()
562 saa_writel(SAA7133_NUM_SAMPLES, dev->dmasound.blksize -1); snd_card_saa7134_capture_prepare()
578 saa_writel(SAA7134_RS_BA2(6),dev->dmasound.blksize); snd_card_saa7134_capture_prepare()
695 dev->dmasound.blksize == period_size) snd_card_saa7134_hw_params()
706 dev->dmasound.blksize = period_size; snd_card_saa7134_hw_params()
712 dev->dmasound.blksize = 0; snd_card_saa7134_hw_params()
H A Dsaa7134.h504 unsigned int blksize; member in struct:saa7134_dmasound
/linux-4.4.14/net/decnet/
H A Ddn_neigh.c161 dn->blksize = dev->mtu - 2; dn_neigh_construct()
408 dn->blksize = le16_to_cpu(msg->blksize); dn_neigh_router_hello()
467 dn->blksize = le16_to_cpu(msg->blksize); dn_neigh_endnode_hello()
563 dn->blksize, dn_neigh_format_entry()
H A Ddn_dev.c23 * Steve Whitehouse : Got rid of constant sizes for blksize for
302 u32 blksize = dev->mtu; mtu2blksize() local
303 if (blksize > 0xffff) mtu2blksize()
304 blksize = 0xffff; mtu2blksize()
310 blksize -= 2; mtu2blksize()
312 return (__u16)blksize; mtu2blksize()
851 msg->blksize = cpu_to_le16(mtu2blksize(dev)); dn_send_endnode_hello()
/linux-4.4.14/drivers/mtd/
H A Dmtdblock_ro.c76 .blksize = 512,
H A Dmtd_blkdevs.c101 for (; nsect > 0; nsect--, block++, buf += tr->blksize) do_blktrans_request()
111 for (; nsect > 0; nsect--, block++, buf += tr->blksize) do_blktrans_request()
402 set_capacity(gd, ((u64)new->size * tr->blksize) >> 9); add_mtd_blktrans_dev()
415 blk_queue_logical_block_size(new->rq, tr->blksize); add_mtd_blktrans_dev()
550 tr->blkshift = ffs(tr->blksize) - 1; register_mtd_blktrans()
H A Dmtdblock.c369 .blksize = 512,
H A Dssfdc.c433 .blksize = SECTOR_SIZE,
H A Drfd_ftl.c822 .blksize = SECTOR_SIZE,
H A Dftl.c1088 .blksize = SECTOR_SIZE,
H A Dinftlcore.c944 .blksize = 512,
H A Dmtdswap.c1563 .blksize = PAGE_SIZE,
H A Dnftlcore.c802 .blksize = 512,
H A Dsm_ftl.c1256 .blksize = SM_SECTOR_SIZE,
/linux-4.4.14/fs/f2fs/
H A Dcrypto_fname.c257 u32 f2fs_fname_crypto_round_up(u32 size, u32 blksize) f2fs_fname_crypto_round_up() argument
259 return ((size + blksize - 1) / blksize) * blksize; f2fs_fname_crypto_round_up()
/linux-4.4.14/fs/isofs/
H A Dcompress.c211 unsigned int blksize = 1 << blkbits; zisofs_fill_pages() local
240 (bh->b_data + (blockptr & (blksize - 1)))); zisofs_fill_pages()
246 if (!(blockptr & (blksize - 1))) { zisofs_fill_pages()
254 (bh->b_data + (blockptr & (blksize - 1)))); zisofs_fill_pages()
/linux-4.4.14/fs/ext4/
H A Dcrypto_fname.c257 u32 ext4_fname_crypto_round_up(u32 size, u32 blksize) ext4_fname_crypto_round_up() argument
259 return ((size+blksize-1)/blksize)*blksize; ext4_fname_crypto_round_up()
H A Dsuper.c2423 * on modern mke2fs or blksize > 1k on older mke2fs) then we must descriptor_loc()
H A Dext4.h2289 u32 ext4_fname_crypto_round_up(u32 size, u32 blksize);
/linux-4.4.14/net/ipv6/
H A Desp6.c158 int blksize; esp6_output() local
186 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp6_output()
187 clen = ALIGN(skb->len + 2 + tfclen, blksize); esp6_output()
447 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp6_get_mtu() local
456 net_adj) & ~(blksize - 1)) + net_adj - 2; esp6_get_mtu()
/linux-4.4.14/drivers/mtd/nand/
H A Dmpc5121_nfc.c411 uint o, s, sbsize, blksize; mpc5121_nfc_copy_spare() local
442 blksize = min(sbsize - o, size); mpc5121_nfc_copy_spare()
446 buffer, blksize); mpc5121_nfc_copy_spare()
449 prv->regs + NFC_SPARE_AREA(s) + o, blksize); mpc5121_nfc_copy_spare()
451 buffer += blksize; mpc5121_nfc_copy_spare()
452 offset += blksize; mpc5121_nfc_copy_spare()
453 size -= blksize; mpc5121_nfc_copy_spare()
/linux-4.4.14/drivers/block/
H A Dnbd.c57 int blksize; member in struct:nbd_device
700 nbd->blksize = arg; __nbd_ioctl()
701 nbd->bytesize &= ~(nbd->blksize-1); __nbd_ioctl()
703 set_blocksize(bdev, nbd->blksize); __nbd_ioctl()
708 nbd->bytesize = arg & ~(nbd->blksize-1); __nbd_ioctl()
710 set_blocksize(bdev, nbd->blksize); __nbd_ioctl()
729 nbd->bytesize = ((u64) arg) * nbd->blksize; __nbd_ioctl()
731 set_blocksize(bdev, nbd->blksize); __nbd_ioctl()
925 f = debugfs_create_u32("blocksize", 0444, dir, &nbd->blksize); nbd_dev_dbg_init()
1079 nbd_dev[i].blksize = 1024; nbd_init()
H A Dnull_blk.c476 sector_t blksize; null_lnvm_id() local
505 blksize = size; null_lnvm_id()
508 do_div(blksize, grp->num_lun); null_lnvm_id()
509 grp->num_blk = blksize; null_lnvm_id()
/linux-4.4.14/drivers/usb/serial/
H A Dcyberjack.c373 int length, blksize, result; cyberjack_write_bulk_callback() local
401 blksize = ((int)priv->wrbuf[2]<<8)+priv->wrbuf[1]+3; cyberjack_write_bulk_callback()
404 priv->wrsent >= blksize) { cyberjack_write_bulk_callback()
/linux-4.4.14/fs/hostfs/
H A Dhostfs.h59 unsigned int blksize; member in struct:hostfs_stat
H A Dhostfs_user.c35 p->blksize = buf->st_blksize; stat64_to_hostfs()
/linux-4.4.14/include/linux/mtd/
H A Dblktrans.h59 int blksize; member in struct:mtd_blktrans_ops
/linux-4.4.14/fs/fuse/
H A Dinode.c71 unsigned blksize; member in struct:fuse_mount_data
182 if (attr->blksize != 0) fuse_change_attributes_common()
183 inode->i_blkbits = ilog2(attr->blksize); fuse_change_attributes_common()
454 {OPT_BLKSIZE, "blksize=%u"},
474 d->blksize = FUSE_DEFAULT_BLKSIZE; parse_fuse_opt()
537 d->blksize = value; parse_fuse_opt()
566 seq_printf(m, ",blksize=%lu", sb->s_blocksize); fuse_show_options()
1052 if (!sb_set_blocksize(sb, d.blksize)) fuse_fill_super()
H A Ddir.c856 if (attr->blksize != 0) fuse_fillattr()
857 blkbits = ilog2(attr->blksize); fuse_fillattr()
861 stat->blksize = 1 << blkbits; fuse_fillattr()
/linux-4.4.14/drivers/md/
H A Draid0.c86 unsigned short blksize = 512; create_strip_zones() local
101 blksize = max(blksize, queue_logical_block_size( rdev_for_each()
144 if ((mddev->chunk_sectors << 9) % blksize) {
147 mddev->chunk_sectors << 9, blksize);
/linux-4.4.14/net/ipv4/
H A Desp4.c132 int blksize; esp_output() local
159 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp_output()
160 clen = ALIGN(skb->len + 2 + tfclen, blksize); esp_output()
493 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp4_get_mtu() local
509 net_adj) & ~(blksize - 1)) + net_adj - 2; esp4_get_mtu()
/linux-4.4.14/security/keys/encrypted-keys/
H A Dencrypted.c48 static int blksize; variable
97 blksize = crypto_blkcipher_blocksize(tfm); aes_get_sizes()
476 encrypted_datalen = roundup(epayload->decrypted_datalen, blksize); derived_key_encrypt()
573 encrypted_datalen = roundup(epayload->decrypted_datalen, blksize); derived_key_decrypt()
630 encrypted_datalen = roundup(decrypted_datalen, blksize); encrypted_key_alloc()
664 encrypted_datalen = roundup(epayload->decrypted_datalen, blksize); encrypted_key_decrypt()
912 + roundup(epayload->decrypted_datalen, blksize) encrypted_read()
/linux-4.4.14/fs/
H A Dstat.c34 stat->blksize = (1 << inode->i_blkbits); generic_fillattr()
262 tmp.st_blksize = stat->blksize; cp_new_stat()
394 tmp.st_blksize = stat->blksize; cp_new_stat64()
H A Dcompat.c158 tmp.st_blksize = stat->blksize; cp_compat_stat()
/linux-4.4.14/fs/xfs/
H A Dxfs_dir2_readdir.c320 mip->ra_want = howmany(bufsize + geo->blksize, (1 << geo->fsblog)) - 1; xfs_dir2_leaf_readbuf()
504 length = howmany(bufsize + geo->blksize, (1 << geo->fsblog)); xfs_dir2_leaf_getdents()
534 if (!bp || ptr >= (char *)bp->b_addr + geo->blksize) { xfs_dir2_leaf_getdents()
598 if (ptr >= (char *)hdr + geo->blksize) { xfs_dir2_leaf_getdents()
H A Dxfs_iops.c472 stat->blksize = BLKDEV_IOSIZE; xfs_vn_getattr()
483 stat->blksize = xfs_vn_getattr()
486 stat->blksize = xfs_preferred_iosize(mp); xfs_vn_getattr()
H A Dxfs_bmap_util.c1387 uint blksize; xfs_zero_file_space() local
1392 blksize = 1 << mp->m_sb.sb_blocklog; xfs_zero_file_space()
1407 error = xfs_alloc_file_space(ip, round_down(offset, blksize), xfs_zero_file_space()
1408 round_up(offset + len, blksize) - xfs_zero_file_space()
1409 round_down(offset, blksize), xfs_zero_file_space()
H A Dxfs_fsops.c110 geo->dirblocksize = mp->m_dir_geo->blksize; xfs_fs_geometry()
/linux-4.4.14/drivers/mmc/host/
H A Dwbsd.c543 u16 blksize; wbsd_prepare_data() local
578 blksize = data->blksz + 2; wbsd_prepare_data()
580 wbsd_write_index(host, WBSD_IDX_PBSMSB, (blksize >> 4) & 0xF0); wbsd_prepare_data()
581 wbsd_write_index(host, WBSD_IDX_PBSLSB, blksize & 0xFF); wbsd_prepare_data()
583 blksize = data->blksz + 2 * 4; wbsd_prepare_data()
586 ((blksize >> 4) & 0xF0) | WBSD_DATA_WIDTH); wbsd_prepare_data()
587 wbsd_write_index(host, WBSD_IDX_PBSLSB, blksize & 0xFF); wbsd_prepare_data()
H A Dsdhci.c305 size_t blksize, len, chunk; sdhci_read_block_pio() local
311 blksize = host->data->blksz; sdhci_read_block_pio()
316 while (blksize) { sdhci_read_block_pio()
319 len = min(host->sg_miter.length, blksize); sdhci_read_block_pio()
321 blksize -= len; sdhci_read_block_pio()
349 size_t blksize, len, chunk; sdhci_write_block_pio() local
355 blksize = host->data->blksz; sdhci_write_block_pio()
361 while (blksize) { sdhci_write_block_pio()
364 len = min(host->sg_miter.length, blksize); sdhci_write_block_pio()
366 blksize -= len; sdhci_write_block_pio()
378 if ((chunk == 4) || ((len == 0) && (blksize == 0))) { sdhci_write_block_pio()
/linux-4.4.14/drivers/net/wireless/libertas_tf/
H A Dif_usb.c778 u32 blksize, offset, len; check_fwfile_format() local
788 blksize = le32_to_cpu(fwh->datalength); check_fwfile_format()
791 offset = sizeof(struct fwheader) + blksize; check_fwfile_format()
/linux-4.4.14/drivers/crypto/marvell/
H A Dcipher.c397 unsigned int blksize = crypto_ablkcipher_blocksize(tfm); mv_cesa_ablkcipher_req_init() local
400 if (!IS_ALIGNED(req->nbytes, blksize)) mv_cesa_ablkcipher_req_init()
/linux-4.4.14/include/uapi/linux/
H A Dfuse.h44 * - add blksize field to fuse_attr
163 uint32_t blksize; member in struct:fuse_attr
/linux-4.4.14/drivers/scsi/lpfc/
H A Dlpfc_scsi.c1301 uint32_t blksize; lpfc_bg_err_inject() local
1315 blksize = lpfc_cmd_blksize(sc); lpfc_bg_err_inject()
1316 numblks = (scsi_bufflen(sc) + blksize - 1) / blksize; lpfc_bg_err_inject()
2026 unsigned blksize; lpfc_bg_setup_bpl_prot() local
2050 blksize = lpfc_cmd_blksize(sc); lpfc_bg_setup_bpl_prot()
2127 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_bpl_prot()
2134 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_bpl_prot()
2403 unsigned blksize; lpfc_bg_setup_sgl_prot() local
2429 blksize = lpfc_cmd_blksize(sc); lpfc_bg_setup_sgl_prot()
2511 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_sgl_prot()
2518 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_sgl_prot()
2885 unsigned blksize; lpfc_calc_bg_err() local
2911 * data length is a multiple of the blksize. lpfc_calc_bg_err()
2914 blksize = lpfc_cmd_blksize(cmd); lpfc_calc_bg_err()
2917 if ((data_len & (blksize - 1)) == 0) lpfc_calc_bg_err()
2942 blksize); lpfc_calc_bg_err()
2945 blksize); lpfc_calc_bg_err()
2972 data_src += blksize; lpfc_calc_bg_err()
2973 data_len -= blksize; lpfc_calc_bg_err()
2988 if ((data_len & (blksize - 1)) == 0) lpfc_calc_bg_err()
/linux-4.4.14/drivers/mmc/core/
H A Dsdio_cis.c154 card->cis.blksize = buf[1] | (buf[2] << 8); cistpl_funce_common()
H A Dsdio.c85 func->max_blksize = func->card->cis.blksize; sdio_init_func()
/linux-4.4.14/arch/sparc/kernel/
H A Dsys_sparc32.c84 err |= put_user(stat->blksize, &statbuf->st_blksize); cp_compat_stat64()
/linux-4.4.14/arch/x86/ia32/
H A Dsys_ia32.c92 __put_user(stat->blksize, &ubuf->st_blksize) || cp_stat64()
/linux-4.4.14/fs/cachefiles/
H A Dbind.c163 _debug("blksize %u (shift %u)", cachefiles_daemon_add_cache()
/linux-4.4.14/fs/ocfs2/
H A Dsuper.c766 int blksize; ocfs2_sb_probe() local
815 for (blksize = *sector_size; ocfs2_sb_probe()
816 blksize <= OCFS2_MAX_BLOCKSIZE; ocfs2_sb_probe()
817 blksize <<= 1) { ocfs2_sb_probe()
820 blksize); ocfs2_sb_probe()
829 tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats); ocfs2_sb_probe()
H A Dfile.c1306 /* We set the blksize from the cluster size for performance */ ocfs2_getattr()
1307 stat->blksize = osb->s_clustersize; ocfs2_getattr()
/linux-4.4.14/fs/nfs/blocklayout/
H A Dblocklayout.c732 dprintk("%s Server did not return blksize\n", __func__); bl_set_layoutdriver()
736 printk(KERN_ERR "%s: pNFS blksize %d not supported.\n", bl_set_layoutdriver()
/linux-4.4.14/fs/fat/
H A Dfile.c311 stat->blksize = MSDOS_SB(inode->i_sb)->cluster_size; fat_getattr()
/linux-4.4.14/fs/affs/
H A Daffs.h85 //u32 s_blksize; /* Initial device blksize */
/linux-4.4.14/fs/sysv/
H A Ditree.c448 stat->blksize = s->s_blocksize; sysv_getattr()
/linux-4.4.14/arch/s390/include/uapi/asm/
H A Ddasd.h174 unsigned int blksize; /* sectorsize */ member in struct:format_data_t
/linux-4.4.14/arch/arm/mach-omap2/
H A Dpdata-quirks.c328 card->cis.blksize = 512; pandora_wl1251_init_card()
/linux-4.4.14/drivers/net/wireless/libertas/
H A Dif_usb.c792 uint32_t blksize, offset, len; check_fwfile_format() local
802 blksize = le32_to_cpu(fwh->datalength); check_fwfile_format()
805 offset = sizeof(struct fwheader) + blksize; check_fwfile_format()
/linux-4.4.14/fs/nfsd/
H A Dnfsctl.c847 * write_maxblksize - Set or report the current NFS blksize
858 * NFS blksize
862 * containing numeric value of the current NFS blksize
H A Dnfsxdr.c165 *p++ = htonl((u32) stat->blksize); encode_fattr()
H A Dnfs4xdr.c2752 *p++ = cpu_to_be32(stat.blksize); nfsd4_encode_fattr()
/linux-4.4.14/include/linux/mmc/
H A Dcard.h198 unsigned short blksize; member in struct:sdio_cis
/linux-4.4.14/arch/s390/kernel/
H A Dcompat_linux.c373 tmp.st_blksize = (u32)stat->blksize; cp_stat64()
/linux-4.4.14/arch/arm/kernel/
H A Dsys_oabi-compat.c133 tmp.st_blksize = stat->blksize; cp_oldabi_stat64()
/linux-4.4.14/fs/minix/
H A Dinode.c634 stat->blksize = sb->s_blocksize; minix_getattr()
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
H A Dsdio.c2159 unsigned int blksize; brcmf_sdio_txpkt_prep_sg() local
2164 blksize = sdiodev->func[SDIO_FUNC_2]->cur_blksize; brcmf_sdio_txpkt_prep_sg()
2166 WARN_ON(blksize % bus->sgentry_align); brcmf_sdio_txpkt_prep_sg()
2174 chain_pad = (total_len + tail_pad) % blksize; brcmf_sdio_txpkt_prep_sg()
2176 tail_pad += blksize - chain_pad; brcmf_sdio_txpkt_prep_sg()
2177 if (skb_tailroom(pkt) < tail_pad && pkt->len > blksize) { brcmf_sdio_txpkt_prep_sg()
/linux-4.4.14/arch/alpha/kernel/
H A Dosf_sys.c292 tmp.st_blksize = lstat->blksize; linux_to_osf_stat()
/linux-4.4.14/fs/9p/
H A Dvfs_inode_dotl.c501 stat->blksize = st->st_blksize; v9fs_vfs_getattr_dotl()
/linux-4.4.14/fs/ubifs/
H A Ddir.c1143 stat->blksize = UBIFS_BLOCK_SIZE; ubifs_getattr()
/linux-4.4.14/drivers/cdrom/
H A Dcdrom.c2084 int lba, int nblocks, int format, int blksize) cdrom_read_block()
2101 cgc->buflen = blksize * nblocks; cdrom_read_block()
2104 switch (blksize) { cdrom_read_block()
2082 cdrom_read_block(struct cdrom_device_info *cdi, struct packet_command *cgc, int lba, int nblocks, int format, int blksize) cdrom_read_block() argument
/linux-4.4.14/fs/nfs/
H A Dinode.c688 stat->blksize = NFS_SERVER(inode)->dtsize; nfs_getattr()
H A Dnfs4xdr.c4844 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize); decode_fsinfo()
H A Dnfs4proc.c4226 server->pnfs_blksize = fsinfo->blksize; nfs4_proc_fsinfo()
/linux-4.4.14/fs/ceph/
H A Dinode.c2093 stat->blksize = 65536; ceph_getattr()
/linux-4.4.14/fs/cifs/
H A Dinode.c1981 stat->blksize = CIFS_MAX_MSGSIZE; cifs_getattr()
H A Dcifspdu.h2710 BB what about a) blksize/blkbits/blocks
/linux-4.4.14/drivers/staging/lustre/lustre/llite/
H A Dfile.c970 CDEBUG(D_INODE, "objid " DOSTID " size %llu, blocks %llu, blksize %lu\n", ll_inode_getattr()
3009 stat->blksize = 1 << inode->i_blkbits; ll_getattr()
/linux-4.4.14/fs/jbd2/
H A Djournal.c1205 "journal %p: inode %s/%ld, size %Ld, bits %d, blksize %ld\n", jbd2_journal_init_inode()
/linux-4.4.14/net/unix/
H A Daf_unix.c58 * fstat() doesn't return st_dev=0, and give the blksize as high water mark
/linux-4.4.14/fs/btrfs/
H A Dinode.c9238 stat->blksize = PAGE_CACHE_SIZE; btrfs_getattr()

Completed in 3721 milliseconds