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

/linux-4.1.27/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.1.27/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()
259 int blksize = mp->m_attr_geo->blksize; xfs_attr_rmtval_copyout() local
261 ASSERT(len >= blksize); xfs_attr_rmtval_copyout()
265 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize); xfs_attr_rmtval_copyout()
283 len -= blksize; xfs_attr_rmtval_copyout()
284 src += blksize; xfs_attr_rmtval_copyout()
285 bno += BTOBB(blksize); xfs_attr_rmtval_copyout()
307 int blksize = mp->m_attr_geo->blksize; xfs_attr_rmtval_copyin() local
309 ASSERT(len >= blksize); xfs_attr_rmtval_copyin()
313 int byte_cnt = XFS_ATTR3_RMT_BUF_SPACE(mp, blksize); xfs_attr_rmtval_copyin()
325 if (byte_cnt + hdr_size < blksize) { xfs_attr_rmtval_copyin()
327 ASSERT(len == blksize); xfs_attr_rmtval_copyin()
329 blksize - hdr_size - byte_cnt); xfs_attr_rmtval_copyin()
333 len -= blksize; xfs_attr_rmtval_copyin()
334 dst += blksize; xfs_attr_rmtval_copyin()
335 bno += BTOBB(blksize); xfs_attr_rmtval_copyin()
H A Dxfs_attr_leaf.c127 ASSERT(geo->blksize > USHRT_MAX); xfs_attr3_leaf_firstused_from_disk()
128 to->firstused = geo->blksize; xfs_attr3_leaf_firstused_from_disk()
151 ASSERT(from->firstused == geo->blksize); xfs_attr3_leaf_firstused_to_disk()
885 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP); xfs_attr3_leaf_to_shortform()
889 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize); xfs_attr3_leaf_to_shortform()
896 memset(bp->b_addr, 0, args->geo->blksize); xfs_attr3_leaf_to_shortform()
985 memcpy(bp2->b_addr, bp1->b_addr, args->geo->blksize); xfs_attr3_leaf_to_node()
990 xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1); xfs_attr3_leaf_to_node()
1011 xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1); xfs_attr3_leaf_to_node()
1047 memset(leaf, 0, args->geo->blksize); xfs_attr3_leaf_create()
1050 ichdr.firstused = args->geo->blksize; xfs_attr3_leaf_create()
1069 xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_create()
1254 ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize); xfs_attr3_leaf_add_work()
1258 ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize); xfs_attr3_leaf_add_work()
1350 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP); xfs_attr3_leaf_compact()
1351 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize); xfs_attr3_leaf_compact()
1352 memset(bp->b_addr, 0, args->geo->blksize); xfs_attr3_leaf_compact()
1365 ichdr_dst->firstused = args->geo->blksize; xfs_attr3_leaf_compact()
1386 xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_compact()
1573 xfs_trans_log_buf(args->trans, blk1->bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_rebalance()
1574 xfs_trans_log_buf(args->trans, blk2->bp, 0, args->geo->blksize - 1); xfs_attr3_leaf_rebalance()
1671 lastdelta = state->args->geo->blksize; xfs_attr3_leaf_figure_balance()
1769 if (bytes > (state->args->geo->blksize >> 1)) { xfs_attr3_leaf_toosmall()
1823 bytes = state->args->geo->blksize - xfs_attr3_leaf_toosmall()
1824 (state->args->geo->blksize >> 2) - xfs_attr3_leaf_toosmall()
1888 ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8); xfs_attr3_leaf_remove()
1896 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize); xfs_attr3_leaf_remove()
1911 ASSERT(ichdr.freemap[i].base < args->geo->blksize); xfs_attr3_leaf_remove()
1912 ASSERT(ichdr.freemap[i].size < args->geo->blksize); xfs_attr3_leaf_remove()
1989 tmp = args->geo->blksize; xfs_attr3_leaf_remove()
1993 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize); xfs_attr3_leaf_remove()
2076 tmp_leaf = kmem_zalloc(state->args->geo->blksize, KM_SLEEP); xfs_attr3_leaf_unbalance()
2089 tmphdr.firstused = state->args->geo->blksize; xfs_attr3_leaf_unbalance()
2114 memcpy(save_leaf, tmp_leaf, state->args->geo->blksize); xfs_attr3_leaf_unbalance()
2121 state->args->geo->blksize - 1); xfs_attr3_leaf_unbalance()
2167 ASSERT(ichdr.count < args->geo->blksize / 8); xfs_attr3_leaf_lookup_int()
2271 ASSERT(ichdr.count < args->geo->blksize / 8); xfs_attr3_leaf_getvalue()
2349 ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8); xfs_attr3_leaf_moveents()
2352 ASSERT(ichdr_d->count < args->geo->blksize / 8); xfs_attr3_leaf_moveents()
2404 <= args->geo->blksize); xfs_attr3_leaf_moveents()
2408 <= args->geo->blksize); xfs_attr3_leaf_moveents()
2429 ((char *)leaf_s + args->geo->blksize)); xfs_attr3_leaf_moveents()
2444 ((char *)leaf_s + args->geo->blksize)); xfs_attr3_leaf_moveents()
2520 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()
629 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize; xfs_dir2_isblock()
630 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.c942 while (dp->i_d.di_size > args->geo->blksize) { xfs_dir2_leaf_to_block()
948 args->geo->blksize - hdrsz) { xfs_dir2_leaf_to_block()
976 tagp = (__be16 *)((char *)hdr + args->geo->blksize) - 1; xfs_dir2_leaf_to_block()
995 xfs_dir2_data_use_free(args, dbp, dup, args->geo->blksize - size, size, xfs_dir2_leaf_to_block()
1134 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.c97 endp = (char *)hdr + geo->blksize; __xfs_dir3_data_check()
536 endp = (char *)hdr + geo->blksize; xfs_dir2_data_freescan()
626 t = args->geo->blksize - (uint)dp->d_ops->data_entry_offset; xfs_dir3_data_init()
741 endptr = (char *)hdr + args->geo->blksize; xfs_dir2_data_make_free()
H A Dxfs_dir2_leaf.c444 (xfs_dir2_data_aoff_t)((char *)hdr + args->geo->blksize - xfs_dir2_block_to_leaf()
1140 (uint)(args->geo->blksize - 1)); xfs_dir3_leaf_log_tail()
1424 args->geo->blksize - dp->d_ops->data_entry_offset) { xfs_dir2_leaf_removename()
1623 args->geo->blksize - dp->d_ops->data_entry_offset); xfs_dir2_leaf_trim_data()
1735 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + args->geo->blksize) xfs_dir2_node_to_leaf()
1759 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.c327 (uint)dp->i_d.di_size / args->geo->blksize); xfs_dir2_leaf_to_node()
1265 if (longest == args->geo->blksize - xfs_dir2_leafn_remove()
1405 if (bytes > (state->args->geo->blksize >> 1)) { xfs_dir2_leafn_toosmall()
1458 bytes = state->args->geo->blksize - xfs_dir2_leafn_toosmall()
1459 (state->args->geo->blksize >> 2); xfs_dir2_leafn_toosmall()
H A Dxfs_da_btree.c1088 memcpy(root_blk->bp->b_addr, bp->b_addr, args->geo->blksize); xfs_da3_root_join()
1096 args->geo->blksize - 1); xfs_da3_root_join()
2169 memcpy(dead_buf->b_addr, last_buf->b_addr, args->geo->blksize); xfs_da3_swap_lastblock()
2170 xfs_trans_log_buf(tp, dead_buf, 0, args->geo->blksize - 1); xfs_da3_swap_lastblock()
H A Dxfs_attr.c177 if (size > (args->geo->blksize / 2)) { xfs_attr_calc_size()
863 * 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.1.27/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.1.27/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.1.27/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.1.27/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:__anon8856
/linux-4.1.27/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.1.27/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()
2119 rpt = recs_per_track(&base_priv->rdc_data, 0, fdata->blksize); dasd_eckd_build_format()
2222 fdata->blksize); dasd_eckd_build_format()
2308 ect->dl = fdata->blksize; dasd_eckd_build_format()
2388 if (dasd_check_blocksize(fdata->blksize) != 0) { dasd_eckd_format_device()
2391 fdata->blksize); dasd_eckd_format_device()
2412 fdata->blksize); dasd_eckd_format_device()
2581 unsigned int blksize) dasd_eckd_build_cp_cmd_single()
2611 if (bv.bv_len & (blksize - 1)) rq_for_each_segment()
2683 last_rec - recid + 1, cmd, basedev, blksize);
2695 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
2699 count = blksize; rq_for_each_segment()
2705 if (count < blksize && rq_for_each_segment()
2708 blksize - count); rq_for_each_segment()
2727 if (idal_is_needed(dst, blksize)) { rq_for_each_segment()
2730 idaws = idal_create_words(idaws, dst, blksize); rq_for_each_segment()
2736 dst += blksize; rq_for_each_segment()
2765 unsigned int blksize) dasd_eckd_build_cp_cmd_track()
2820 tlf *= blksize; dasd_eckd_build_cp_cmd_track()
2825 trkcount, blksize, dasd_eckd_build_cp_cmd_track()
2858 len_to_track_end = count * blksize; rq_for_each_segment()
2934 unsigned int blksize, prepare_itcw()
2977 dedata->blk_size = blksize; prepare_itcw()
2987 dedata->blk_size = blksize; prepare_itcw()
3032 dn = ceil_quot(blksize + 6, 232); prepare_itcw()
3033 d = 9 + ceil_quot(blksize + 6 * (dn + 1), 34); prepare_itcw()
3037 d = 7 + ceil_quot(blksize + 12, 32); prepare_itcw()
3071 unsigned int blksize) dasd_eckd_build_cp_tpm_track()
3128 tlf *= blksize;
3139 trkcount, blksize,
3140 (last_rec - first_rec + 1) * blksize,
3170 len_to_track_end = count * blksize; rq_for_each_segment()
3237 unsigned int blk_per_trk, blksize; dasd_eckd_build_cp() local
3246 blksize = block->bp_block; dasd_eckd_build_cp()
3247 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize); dasd_eckd_build_cp()
3260 if (data_size % blksize) dasd_eckd_build_cp()
3280 blk_per_trk, blksize); dasd_eckd_build_cp()
3291 blk_per_trk, blksize); dasd_eckd_build_cp()
3301 blk_per_trk, blksize); dasd_eckd_build_cp()
3462 unsigned int blksize, blk_per_trk, off; dasd_eckd_free_cp() local
3469 blksize = cqr->block->bp_block; dasd_eckd_free_cp()
3470 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize); dasd_eckd_free_cp()
3479 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
2570 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
2754 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
2929 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
3060 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.c511 unsigned int blksize, off; dasd_diag_build_cp() local
520 blksize = block->bp_block; dasd_diag_build_cp()
528 if (bv.bv_len & (blksize - 1)) rq_for_each_segment()
549 for (off = 0; off < bv.bv_len; off += blksize) { rq_for_each_segment()
555 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.1.27/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.c2531 size = be32_to_cpu(p->blksize); receive_DataRequest()
4558 drbd_set_out_of_sync(device, be64_to_cpu(p->sector), be32_to_cpu(p->blksize)); receive_out_of_sync()
5166 int blksize = be32_to_cpu(p->blksize); got_IsInSync() local
5179 drbd_set_in_sync(device, sector, blksize); got_IsInSync()
5181 device->rs_same_csum += (blksize >> BM_BLOCK_SHIFT); got_IsInSync()
5185 atomic_add(blksize >> 9, &device->rs_sect_in); got_IsInSync()
5218 int blksize = be32_to_cpu(p->blksize); got_BlockAck() local
5229 drbd_set_in_sync(device, sector, blksize); got_BlockAck()
5264 int size = be32_to_cpu(p->blksize); got_NegAck()
5309 (unsigned long long)sector, be32_to_cpu(p->blksize)); got_NegDReply()
5330 size = be32_to_cpu(p->blksize); got_NegRSDReply()
5391 size = be32_to_cpu(p->blksize); got_OVResult()
H A Ddrbd_int.h1100 sector_t sector, int blksize, u64 block_id);
/linux-4.1.27/drivers/media/pci/saa7134/
H A Dsaa7134-alsa.c172 if (dev->dmasound.read_count >= dev->dmasound.blksize * (dev->dmasound.blocks-2)) { saa7134_irq_alsa_done()
182 saa_writel(reg,next_blk * dev->dmasound.blksize); saa7134_irq_alsa_done()
186 next_blk * dev->dmasound.blksize, dev->dmasound.blocks, dev->dmasound.blksize, dev->dmasound.read_count); saa7134_irq_alsa_done()
190 dev->dmasound.read_count += dev->dmasound.blksize; saa7134_irq_alsa_done()
385 BUG_ON(!dev->dmasound.blksize); dsp_buffer_free()
390 dev->dmasound.blksize = 0; dsp_buffer_free()
556 saa_writeb(SAA7134_NUM_SAMPLES0, ((dev->dmasound.blksize - 1) & 0x0000ff)); snd_card_saa7134_capture_prepare()
557 saa_writeb(SAA7134_NUM_SAMPLES1, ((dev->dmasound.blksize - 1) & 0x00ff00) >> 8); snd_card_saa7134_capture_prepare()
558 saa_writeb(SAA7134_NUM_SAMPLES2, ((dev->dmasound.blksize - 1) & 0xff0000) >> 16); snd_card_saa7134_capture_prepare()
570 saa_writel(SAA7133_NUM_SAMPLES, dev->dmasound.blksize -1); snd_card_saa7134_capture_prepare()
586 saa_writel(SAA7134_RS_BA2(6),dev->dmasound.blksize); snd_card_saa7134_capture_prepare()
703 dev->dmasound.blksize == period_size) snd_card_saa7134_hw_params()
714 dev->dmasound.blksize = period_size; snd_card_saa7134_hw_params()
720 dev->dmasound.blksize = 0; snd_card_saa7134_hw_params()
H A Dsaa7134.h500 unsigned int blksize; member in struct:saa7134_dmasound
/linux-4.1.27/drivers/block/
H A Dnbd.c57 int blksize; member in struct:nbd_device
637 nbd->blksize = arg; __nbd_ioctl()
638 nbd->bytesize &= ~(nbd->blksize-1); __nbd_ioctl()
640 set_blocksize(bdev, nbd->blksize); __nbd_ioctl()
645 nbd->bytesize = arg & ~(nbd->blksize-1); __nbd_ioctl()
647 set_blocksize(bdev, nbd->blksize); __nbd_ioctl()
660 nbd->bytesize = ((u64) arg) * nbd->blksize; __nbd_ioctl()
662 set_blocksize(bdev, nbd->blksize); __nbd_ioctl()
849 nbd_dev[i].blksize = 1024; nbd_init()
/linux-4.1.27/net/decnet/
H A Ddn_neigh.c161 dn->blksize = dev->mtu - 2; dn_neigh_construct()
405 dn->blksize = le16_to_cpu(msg->blksize); dn_neigh_router_hello()
464 dn->blksize = le16_to_cpu(msg->blksize); dn_neigh_endnode_hello()
560 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.1.27/drivers/mtd/
H A Dmtdblock_ro.c76 .blksize = 512,
H A Dmtd_blkdevs.c102 for (; nsect > 0; nsect--, block++, buf += tr->blksize) do_blktrans_request()
112 for (; nsect > 0; nsect--, block++, buf += tr->blksize) do_blktrans_request()
406 set_capacity(gd, (new->size * tr->blksize) >> 9); add_mtd_blktrans_dev()
419 blk_queue_logical_block_size(new->rq, tr->blksize); add_mtd_blktrans_dev()
554 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.1.27/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.1.27/net/ipv4/
H A Desp4.c128 int blksize; esp_output() local
153 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp_output()
154 clen = ALIGN(skb->len + 2 + tfclen, blksize); esp_output()
460 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp4_get_mtu() local
476 net_adj) & ~(blksize - 1)) + net_adj - 2; esp4_get_mtu()
/linux-4.1.27/net/ipv6/
H A Desp6.c154 int blksize; esp6_output() local
180 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp6_output()
181 clen = ALIGN(skb->len + 2 + tfclen, blksize); esp6_output()
414 u32 blksize = ALIGN(crypto_aead_blocksize(aead), 4); esp6_get_mtu() local
423 net_adj) & ~(blksize - 1)) + net_adj - 2; esp6_get_mtu()
/linux-4.1.27/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.1.27/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.1.27/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.1.27/include/linux/mtd/
H A Dblktrans.h59 int blksize; member in struct:mtd_blktrans_ops
/linux-4.1.27/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()
1001 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.1.27/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.1.27/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.1.27/fs/
H A Dstat.c34 stat->blksize = (1 << inode->i_blkbits); generic_fillattr()
262 tmp.st_blksize = stat->blksize; cp_new_stat()
396 tmp.st_blksize = stat->blksize; cp_new_stat64()
H A Dcompat.c158 tmp.st_blksize = stat->blksize; cp_compat_stat()
/linux-4.1.27/fs/xfs/
H A Dxfs_dir2_readdir.c317 mip->ra_want = howmany(bufsize + geo->blksize, (1 << geo->fsblog)) - 1; xfs_dir2_leaf_readbuf()
501 length = howmany(bufsize + geo->blksize, (1 << geo->fsblog)); xfs_dir2_leaf_getdents()
531 if (!bp || ptr >= (char *)bp->b_addr + geo->blksize) { xfs_dir2_leaf_getdents()
592 if (ptr >= (char *)hdr + geo->blksize) { xfs_dir2_leaf_getdents()
H A Dxfs_iops.c475 stat->blksize = BLKDEV_IOSIZE; xfs_vn_getattr()
486 stat->blksize = xfs_vn_getattr()
489 stat->blksize = xfs_preferred_iosize(mp); xfs_vn_getattr()
H A Dxfs_bmap_util.c1349 uint blksize; xfs_zero_file_space() local
1354 blksize = 1 << mp->m_sb.sb_blocklog; xfs_zero_file_space()
1369 error = xfs_alloc_file_space(ip, round_down(offset, blksize), xfs_zero_file_space()
1370 round_up(offset + len, blksize) - xfs_zero_file_space()
1371 round_down(offset, blksize), xfs_zero_file_space()
H A Dxfs_fsops.c108 geo->dirblocksize = mp->m_dir_geo->blksize; xfs_fs_geometry()
/linux-4.1.27/fs/ext4/
H A Dcrypto_fname.c462 u32 ext4_fname_crypto_round_up(u32 size, u32 blksize) ext4_fname_crypto_round_up() argument
464 return ((size+blksize-1)/blksize)*blksize; ext4_fname_crypto_round_up()
H A Dext4.h2119 u32 ext4_fname_crypto_round_up(u32 size, u32 blksize);
H A Dsuper.c2413 * on modern mke2fs or blksize > 1k on older mke2fs) then we must descriptor_loc()
/linux-4.1.27/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.c318 size_t blksize, len, chunk; sdhci_read_block_pio() local
324 blksize = host->data->blksz; sdhci_read_block_pio()
329 while (blksize) { sdhci_read_block_pio()
333 len = min(host->sg_miter.length, blksize); sdhci_read_block_pio()
335 blksize -= len; sdhci_read_block_pio()
363 size_t blksize, len, chunk; sdhci_write_block_pio() local
369 blksize = host->data->blksz; sdhci_write_block_pio()
375 while (blksize) { sdhci_write_block_pio()
379 len = min(host->sg_miter.length, blksize); sdhci_write_block_pio()
381 blksize -= len; sdhci_write_block_pio()
393 if ((chunk == 4) || ((len == 0) && (blksize == 0))) { sdhci_write_block_pio()
/linux-4.1.27/drivers/scsi/lpfc/
H A Dlpfc_scsi.c1302 uint32_t blksize; lpfc_bg_err_inject() local
1317 blksize = lpfc_cmd_blksize(sc); lpfc_bg_err_inject()
1318 numblks = (scsi_bufflen(sc) + blksize - 1) / blksize; lpfc_bg_err_inject()
1885 unsigned blksize; lpfc_bg_setup_bpl() local
1893 blksize = lpfc_cmd_blksize(sc); lpfc_bg_setup_bpl()
2030 unsigned blksize; lpfc_bg_setup_bpl_prot() local
2054 blksize = lpfc_cmd_blksize(sc); lpfc_bg_setup_bpl_prot()
2131 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_bpl_prot()
2138 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_bpl_prot()
2266 unsigned blksize; lpfc_bg_setup_sgl() local
2280 blksize = lpfc_cmd_blksize(sc); lpfc_bg_setup_sgl()
2409 unsigned blksize; lpfc_bg_setup_sgl_prot() local
2435 blksize = lpfc_cmd_blksize(sc); lpfc_bg_setup_sgl_prot()
2517 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_sgl_prot()
2524 protgrp_bytes = protgrp_blks * blksize; lpfc_bg_setup_sgl_prot()
2891 unsigned blksize; lpfc_calc_bg_err() local
2917 * data length is a multiple of the blksize. lpfc_calc_bg_err()
2920 blksize = lpfc_cmd_blksize(cmd); lpfc_calc_bg_err()
2923 if ((data_len & (blksize - 1)) == 0) lpfc_calc_bg_err()
2949 blksize); lpfc_calc_bg_err()
2952 blksize); lpfc_calc_bg_err()
2979 data_src += blksize; lpfc_calc_bg_err()
2980 data_len -= blksize; lpfc_calc_bg_err()
2995 if ((data_len & (blksize - 1)) == 0) lpfc_calc_bg_err()
/linux-4.1.27/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.1.27/include/uapi/linux/
H A Dfuse.h44 * - add blksize field to fuse_attr
163 uint32_t blksize; member in struct:fuse_attr
/linux-4.1.27/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.1.27/drivers/staging/lustre/lustre/lov/
H A Dlproc_lov.c268 LPROC_SEQ_FOPS_RO_TYPE(lov, blksize);
/linux-4.1.27/drivers/staging/lustre/lustre/mdc/
H A Dlproc_mdc.c160 LPROC_SEQ_FOPS_RO_TYPE(mdc, blksize);
/linux-4.1.27/arch/sparc/kernel/
H A Dsys_sparc32.c84 err |= put_user(stat->blksize, &statbuf->st_blksize); cp_compat_stat64()
/linux-4.1.27/arch/x86/ia32/
H A Dsys_ia32.c92 __put_user(stat->blksize, &ubuf->st_blksize) || cp_stat64()
/linux-4.1.27/fs/cachefiles/
H A Dbind.c163 _debug("blksize %u (shift %u)", cachefiles_daemon_add_cache()
/linux-4.1.27/fs/ocfs2/
H A Dsuper.c764 int blksize; ocfs2_sb_probe() local
813 for (blksize = *sector_size; ocfs2_sb_probe()
814 blksize <= OCFS2_MAX_BLOCKSIZE; ocfs2_sb_probe()
815 blksize <<= 1) { ocfs2_sb_probe()
818 blksize); ocfs2_sb_probe()
827 tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats); ocfs2_sb_probe()
H A Dfile.c1292 /* We set the blksize from the cluster size for performance */ ocfs2_getattr()
1293 stat->blksize = osb->s_clustersize; ocfs2_getattr()
/linux-4.1.27/fs/nfs/blocklayout/
H A Dblocklayout.c737 dprintk("%s Server did not return blksize\n", __func__); bl_set_layoutdriver()
741 printk(KERN_ERR "%s: pNFS blksize %d not supported.\n", bl_set_layoutdriver()
/linux-4.1.27/fs/sysv/
H A Ditree.c448 stat->blksize = s->s_blocksize; sysv_getattr()
/linux-4.1.27/arch/s390/include/uapi/asm/
H A Ddasd.h174 unsigned int blksize; /* sectorsize */ member in struct:format_data_t
/linux-4.1.27/arch/arm/mach-omap2/
H A Dboard-omap3pandora.c262 card->cis.blksize = 512; pandora_wl1251_init_card()
/linux-4.1.27/fs/fat/
H A Dfile.c310 stat->blksize = MSDOS_SB(inode->i_sb)->cluster_size; fat_getattr()
/linux-4.1.27/fs/affs/
H A Daffs.h85 //u32 s_blksize; /* Initial device blksize */
/linux-4.1.27/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.1.27/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.c2735 *p++ = cpu_to_be32(stat.blksize); nfsd4_encode_fattr()
/linux-4.1.27/arch/s390/kernel/
H A Dcompat_linux.c373 tmp.st_blksize = (u32)stat->blksize; cp_stat64()
/linux-4.1.27/arch/arm/kernel/
H A Dsys_oabi-compat.c133 tmp.st_blksize = stat->blksize; cp_oldabi_stat64()
/linux-4.1.27/include/linux/mmc/
H A Dcard.h197 unsigned short blksize; member in struct:sdio_cis
/linux-4.1.27/drivers/staging/lustre/lustre/osc/
H A Dlproc_osc.c525 LPROC_SEQ_FOPS_RO_TYPE(osc, blksize);
/linux-4.1.27/fs/minix/
H A Dinode.c634 stat->blksize = sb->s_blocksize; minix_getattr()
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
H A Dsdio.c2152 unsigned int blksize; brcmf_sdio_txpkt_prep_sg() local
2157 blksize = sdiodev->func[SDIO_FUNC_2]->cur_blksize; brcmf_sdio_txpkt_prep_sg()
2159 WARN_ON(blksize % bus->sgentry_align); brcmf_sdio_txpkt_prep_sg()
2167 chain_pad = (total_len + tail_pad) % blksize; brcmf_sdio_txpkt_prep_sg()
2169 tail_pad += blksize - chain_pad; brcmf_sdio_txpkt_prep_sg()
2170 if (skb_tailroom(pkt) < tail_pad && pkt->len > blksize) { brcmf_sdio_txpkt_prep_sg()
/linux-4.1.27/fs/ubifs/
H A Ddir.c1144 stat->blksize = UBIFS_BLOCK_SIZE; ubifs_getattr()
/linux-4.1.27/arch/alpha/kernel/
H A Dosf_sys.c292 tmp.st_blksize = lstat->blksize; linux_to_osf_stat()
/linux-4.1.27/fs/9p/
H A Dvfs_inode_dotl.c501 stat->blksize = st->st_blksize; v9fs_vfs_getattr_dotl()
/linux-4.1.27/drivers/cdrom/
H A Dcdrom.c2083 int lba, int nblocks, int format, int blksize) cdrom_read_block()
2100 cgc->buflen = blksize * nblocks; cdrom_read_block()
2103 switch (blksize) { cdrom_read_block()
2081 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.1.27/fs/jbd/
H A Djournal.c863 "journal %p: inode %s/%ld, size %Ld, bits %d, blksize %ld\n", journal_init_inode()
/linux-4.1.27/fs/ceph/
H A Dinode.c2012 stat->blksize = 65536; ceph_getattr()
/linux-4.1.27/fs/cifs/
H A Dinode.c1981 stat->blksize = CIFS_MAX_MSGSIZE; cifs_getattr()
H A Dcifspdu.h2684 BB what about a) blksize/blkbits/blocks
/linux-4.1.27/net/unix/
H A Daf_unix.c58 * fstat() doesn't return st_dev=0, and give the blksize as high water mark
/linux-4.1.27/drivers/staging/lustre/lustre/llite/
H A Dfile.c979 CDEBUG(D_INODE, "objid " DOSTID " size %llu, blocks %llu, blksize %lu\n", ll_inode_getattr()
3047 stat->blksize = 1 << inode->i_blkbits; ll_getattr()
/linux-4.1.27/fs/jbd2/
H A Djournal.c1220 "journal %p: inode %s/%ld, size %Ld, bits %d, blksize %ld\n", jbd2_journal_init_inode()
/linux-4.1.27/fs/nfs/
H A Dnfs4xdr.c4765 status = decode_attr_layout_blksize(xdr, bitmap, &fsinfo->blksize); decode_fsinfo()
H A Dnfs4proc.c4072 server->pnfs_blksize = fsinfo->blksize; nfs4_proc_fsinfo()
/linux-4.1.27/fs/btrfs/
H A Dinode.c9097 stat->blksize = PAGE_CACHE_SIZE; btrfs_getattr()

Completed in 5560 milliseconds