/linux/fs/ramfs/ |
H A D | file-nommu.c | 62 int ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize) in ramfs_nommu_expand_for_mapping() argument 72 order = get_order(newsize); in ramfs_nommu_expand_for_mapping() 76 ret = inode_newsize_ok(inode, newsize); in ramfs_nommu_expand_for_mapping() 80 i_size_write(inode, newsize); in ramfs_nommu_expand_for_mapping() 90 npages = (newsize + PAGE_SIZE - 1) >> PAGE_SHIFT; in ramfs_nommu_expand_for_mapping() 99 newsize = PAGE_SIZE * npages; in ramfs_nommu_expand_for_mapping() 101 memset(data, 0, newsize); in ramfs_nommu_expand_for_mapping() 132 static int ramfs_nommu_resize(struct inode *inode, loff_t newsize, loff_t size) in ramfs_nommu_resize() argument 139 if (unlikely(newsize >> 32)) in ramfs_nommu_resize() 142 return ramfs_nommu_expand_for_mapping(inode, newsize); in ramfs_nommu_resize() [all …]
|
/linux/fs/bcachefs/ |
H A D | keylist.c | 11 size_t newsize = oldsize + new_u64s; in bch2_keylist_realloc() local 15 newsize = roundup_pow_of_two(newsize); in bch2_keylist_realloc() 17 if (newsize <= nr_inline_u64s || in bch2_keylist_realloc() 18 (old_buf && roundup_pow_of_two(oldsize) == newsize)) in bch2_keylist_realloc() 21 new_keys = krealloc(old_buf, sizeof(u64) * newsize, GFP_NOFS); in bch2_keylist_realloc()
|
/linux/drivers/acpi/x86/ |
H A D | apple.c | 30 unsigned int i, j = 0, newsize = 0, numprops, numvalid; in acpi_extract_apple_properties() local 79 newsize += key->string.length + 1; in acpi_extract_apple_properties() 81 newsize += val->buffer.length; in acpi_extract_apple_properties() 83 newsize += val->string.length + 1; in acpi_extract_apple_properties() 95 newsize += (1 + 3 * numvalid) * sizeof(union acpi_object); in acpi_extract_apple_properties() 96 newprops = ACPI_ALLOCATE_ZEROED(newsize); in acpi_extract_apple_properties() 140 WARN_ON(free_space != (void *)newprops + newsize); in acpi_extract_apple_properties()
|
/linux/mm/ |
H A D | readahead.c | 368 unsigned long newsize = roundup_pow_of_two(size); in get_init_ra_size() local 370 if (newsize <= max / 32) in get_init_ra_size() 371 newsize = newsize * 4; in get_init_ra_size() 372 else if (newsize <= max / 4) in get_init_ra_size() 373 newsize = newsize * 2; in get_init_ra_size() 375 newsize = max; in get_init_ra_size() 377 return newsize; in get_init_ra_size()
|
H A D | truncate.c | 688 * @newsize: new file size 700 void truncate_pagecache(struct inode *inode, loff_t newsize) 703 loff_t holebegin = round_up(newsize, PAGE_SIZE); 715 truncate_inode_pages(mapping, newsize); in truncate_pagecache() 723 * @newsize: new file size in truncate_pagecache() 726 * necessary) to @newsize. It will be typically be called from the filesystem's in truncate_pagecache() 733 void truncate_setsize(struct inode *inode, loff_t newsize) 737 i_size_write(inode, newsize); 738 if (newsize > oldsize) 739 pagecache_isize_extended(inode, oldsize, newsize); 711 truncate_pagecache(struct inode * inode,loff_t newsize) truncate_pagecache() argument 744 truncate_setsize(struct inode * inode,loff_t newsize) truncate_setsize() argument [all...] |
/linux/scripts/dtc/ |
H A D | data.c | 27 unsigned int newsize; in data_grow_for() local 34 newsize = xlen; in data_grow_for() 36 while ((d.len + xlen) > newsize) in data_grow_for() 37 newsize *= 2; in data_grow_for() 39 nd.val = xrealloc(d.val, newsize); in data_grow_for()
|
/linux/fs/xfs/libxfs/ |
H A D | xfs_dir2_sf.c | 926 int newsize; /* new inode size */ in xfs_dir2_sf_removename() local 961 newsize = oldsize - entsize; in xfs_dir2_sf_removename() 972 dp->i_disk_size = newsize; in xfs_dir2_sf_removename() 977 sfp = xfs_idata_realloc(dp, newsize - oldsize, XFS_DATA_FORK); in xfs_dir2_sf_removename() 1002 int newsize; in xfs_dir2_sf_replace_needblock() local 1007 newsize = dp->i_df.if_bytes + (sfp->count + 1) * XFS_INO64_DIFF; in xfs_dir2_sf_replace_needblock() 1010 sfp->i8count == 0 && newsize > xfs_inode_data_fork_size(dp); in xfs_dir2_sf_replace_needblock() 1140 int newsize; /* new inode size */ in xfs_dir2_sf_toino4() local 1160 newsize = oldsize - (oldsfp->count + 1) * XFS_INO64_DIFF; in xfs_dir2_sf_toino4() 1162 xfs_idata_realloc(dp, newsize, XFS_DATA_FORK); in xfs_dir2_sf_toino4() [all …]
|
/linux/fs/xfs/ |
H A D | xfs_iops.c | 837 xfs_off_t oldsize, newsize; in xfs_setattr_size() local 850 newsize = iattr->ia_size; in xfs_setattr_size() 855 if (newsize == 0 && oldsize == 0 && ip->i_df.if_nextents == 0) { in xfs_setattr_size() 888 if (newsize > oldsize) { in xfs_setattr_size() 889 trace_xfs_zero_eof(ip, oldsize, newsize - oldsize); in xfs_setattr_size() 890 error = xfs_zero_range(ip, oldsize, newsize - oldsize, in xfs_setattr_size() 893 error = xfs_truncate_page(ip, newsize, &did_zeroing); in xfs_setattr_size() 920 truncate_setsize(inode, newsize); in xfs_setattr_size() 931 (newsize > ip->i_disk_size && oldsize != ip->i_disk_size)) { in xfs_setattr_size() 933 ip->i_disk_size, newsize - 1); in xfs_setattr_size() [all …]
|
/linux/include/linux/ |
H A D | ramfs.h | 14 ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize) in ramfs_nommu_expand_for_mapping() argument 19 extern int ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize);
|
/linux/scripts/dtc/libfdt/ |
H A D | fdt_rw.c | 423 int newsize; in fdt_open_into() local 458 newsize = FDT_ALIGN(sizeof(struct fdt_header), 8) + mem_rsv_size in fdt_open_into() 461 if (bufsize < newsize) in fdt_open_into() 467 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) { in fdt_open_into() 470 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into() 476 memmove(buf, tmp, newsize); in fdt_open_into()
|
/linux/fs/ceph/ |
H A D | quota.c | 443 bool ceph_quota_is_max_bytes_exceeded(struct inode *inode, loff_t newsize) in ceph_quota_is_max_bytes_exceeded() argument 451 if (newsize <= size) in ceph_quota_is_max_bytes_exceeded() 454 return check_quota_exceeded(inode, QUOTA_CHECK_MAX_BYTES_OP, (newsize - size)); in ceph_quota_is_max_bytes_exceeded() 465 bool ceph_quota_is_max_bytes_approaching(struct inode *inode, loff_t newsize) in ceph_quota_is_max_bytes_approaching() argument 473 if (newsize <= size) in ceph_quota_is_max_bytes_approaching() 477 (newsize - size)); in ceph_quota_is_max_bytes_approaching()
|
/linux/arch/s390/mm/ |
H A D | dump_pagetables.c | 252 size_t oldsize, newsize; in add_marker() local 255 newsize = oldsize + 2 * sizeof(*markers); in add_marker() 257 markers = kvmalloc(newsize, GFP_KERNEL); in add_marker() 259 markers = kvrealloc(markers, newsize, GFP_KERNEL); in add_marker()
|
/linux/fs/jfs/ |
H A D | inode.c | 367 loff_t newsize; in jfs_truncate_nolock() local 388 newsize = xtTruncate(tid, ip, length, in jfs_truncate_nolock() 390 if (newsize < 0) { in jfs_truncate_nolock() 402 } while (newsize > length); /* Truncate isn't always atomic */ in jfs_truncate_nolock()
|
H A D | jfs_xtree.h | 108 extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type);
|
/linux/arch/sh/mm/ |
H A D | pmb.c | 657 unsigned long span, newsize; in pmb_merge() local 661 span = newsize = head->size; in pmb_merge() 668 newsize = span; in pmb_merge() 683 if (!depth || !pmb_size_valid(newsize)) in pmb_merge() 687 head->flags |= pmb_size_to_flags(newsize); in pmb_merge() 689 head->size = newsize; in pmb_merge()
|
/linux/fs/gfs2/ |
H A D | bmap.c | 1319 static int gfs2_journaled_truncate(struct inode *inode, u64 oldsize, u64 newsize) in gfs2_journaled_truncate() argument 1326 while (oldsize != newsize) { in gfs2_journaled_truncate() 1330 chunk = oldsize - newsize; in gfs2_journaled_truncate() 1354 static int trunc_start(struct inode *inode, u64 newsize) in trunc_start() argument 1365 unsigned int offs = newsize & (blocksize - 1); in trunc_start() 1367 error = gfs2_block_zero_range(inode, newsize, in trunc_start() 1387 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode) + newsize); in trunc_start() 1391 i_size_write(inode, newsize); in trunc_start() 1396 error = gfs2_journaled_truncate(inode, oldsize, newsize); in trunc_start() 1398 truncate_pagecache(inode, newsize); in trunc_start() [all …]
|
/linux/arch/s390/tools/ |
H A D | relocs.c | 254 unsigned long newsize = r->size + 50000; in add_reloc() local 255 void *mem = realloc(r->offset, newsize * sizeof(r->offset[0])); in add_reloc() 258 die("realloc of %ld entries for relocs failed\n", newsize); in add_reloc() 261 r->size = newsize; in add_reloc()
|
/linux/fs/f2fs/ |
H A D | xattr.c | 635 int found, newsize; in __f2fs_setxattr() local 712 newsize = XATTR_ALIGN(sizeof(struct f2fs_xattr_entry) + len + size); in __f2fs_setxattr() 725 if (unlikely(free < newsize)) { in __f2fs_setxattr() 760 new_hsize += newsize; in __f2fs_setxattr() 766 *(u32 *)((u8 *)last + newsize) = 0; in __f2fs_setxattr()
|
/linux/fs/udf/ |
H A D | inode.c | 641 static int udf_extend_file(struct inode *inode, loff_t newsize) in udf_extend_file() argument 649 sector_t first_block = newsize >> sb->s_blocksize_bits, offset; in udf_extend_file() 696 (newsize & (sb->s_blocksize - 1)); in udf_extend_file() 1268 int udf_setsize(struct inode *inode, loff_t newsize) in udf_setsize() argument 1279 if (newsize > inode->i_size) { in udf_setsize() 1282 (udf_file_entry_alloc_offset(inode) + newsize)) { in udf_setsize() 1284 iinfo->i_lenAlloc = newsize; in udf_setsize() 1292 err = udf_extend_file(inode, newsize); in udf_setsize() 1296 truncate_setsize(inode, newsize); in udf_setsize() 1301 memset(iinfo->i_data + iinfo->i_lenEAttr + newsize, in udf_setsize() [all …]
|
/linux/fs/affs/ |
H A D | file.c | 558 affs_extent_file_ofs(struct inode *inode, u32 newsize) in affs_extent_file_ofs() argument 566 pr_debug("%s(%lu, %d)\n", __func__, inode->i_ino, newsize); in affs_extent_file_ofs() 576 tmp = min(bsize - boff, newsize - size); in affs_extent_file_ofs() 590 while (size < newsize) { in affs_extent_file_ofs() 595 tmp = min(bsize, newsize - size); in affs_extent_file_ofs() 620 inode->i_size = AFFS_I(inode)->mmu_private = newsize; in affs_extent_file_ofs() 624 inode->i_size = AFFS_I(inode)->mmu_private = newsize; in affs_extent_file_ofs()
|
/linux/drivers/md/ |
H A D | md-cluster.h | 32 int (*resize_bitmaps)(struct mddev *mddev, sector_t newsize, sector_t oldsize);
|
/linux/fs/ntfs3/ |
H A D | file.c | 812 loff_t newsize, oldsize; in ntfs_setattr() local 821 newsize = attr->ia_size; in ntfs_setattr() 823 if (newsize <= oldsize) in ntfs_setattr() 824 err = ntfs_truncate(inode, newsize); in ntfs_setattr() 826 err = ntfs_extend(inode, newsize, 0, NULL); in ntfs_setattr() 832 i_size_write(inode, newsize); in ntfs_setattr()
|
/linux/fs/nfs/ |
H A D | nfs4session.c | 39 static void nfs4_shrink_slot_table(struct nfs4_slot_table *tbl, u32 newsize) in nfs4_shrink_slot_table() argument 42 if (newsize >= tbl->max_slots) in nfs4_shrink_slot_table() 46 while (newsize--) in nfs4_shrink_slot_table()
|
/linux/drivers/block/rnbd/ |
H A D | rnbd-clt.h | 141 int rnbd_clt_resize_disk(struct rnbd_clt_dev *dev, sector_t newsize);
|
/linux/drivers/md/bcache/ |
H A D | bset.c | 138 size_t newsize = oldsize + u64s; in __bch_keylist_realloc() local 142 newsize = roundup_pow_of_two(newsize); in __bch_keylist_realloc() 144 if (newsize <= KEYLIST_INLINE || in __bch_keylist_realloc() 145 roundup_pow_of_two(oldsize) == newsize) in __bch_keylist_realloc() 148 new_keys = krealloc(old_keys, sizeof(uint64_t) * newsize, GFP_NOIO); in __bch_keylist_realloc()
|