Home
last modified time | relevance | path

Searched refs:newsize (Results 1 – 25 of 46) sorted by relevance

12

/linux/fs/ramfs/
H A Dfile-nommu.c62 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 Dkeylist.c11 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 Dapple.c30 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 Dreadahead.c363 unsigned long newsize = roundup_pow_of_two(size); in get_next_ra_size()
365 if (newsize <= max / 32) in get_next_ra_size()
366 newsize = newsize * 4; in get_next_ra_size()
367 else if (newsize <= max / 4) in get_next_ra_size()
368 newsize = newsize * 2; in get_next_ra_size()
370 newsize = max; in get_next_ra_size()
372 return newsize; in get_next_ra_size()
346 unsigned long newsize = roundup_pow_of_two(size); get_init_ra_size() local
H A Dtruncate.c712 void truncate_pagecache(struct inode *inode, loff_t newsize) in truncate_pagecache() argument
715 loff_t holebegin = round_up(newsize, PAGE_SIZE); in truncate_pagecache()
727 truncate_inode_pages(mapping, newsize); in truncate_pagecache()
745 void truncate_setsize(struct inode *inode, loff_t newsize) in truncate_setsize() argument
749 i_size_write(inode, newsize); in truncate_setsize()
750 if (newsize > oldsize) in truncate_setsize()
751 pagecache_isize_extended(inode, oldsize, newsize); in truncate_setsize()
752 truncate_pagecache(inode, newsize); in truncate_setsize()
/linux/scripts/dtc/
H A Ddata.c27 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 Dxfs_dir2_sf.c926 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/include/linux/
H A Dramfs.h14 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 Dfdt_rw.c423 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 Dquota.c443 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 Ddump_pagetables.c252 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 Dinode.c367 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 Djfs_xtree.h108 extern s64 xtTruncate(tid_t tid, struct inode *ip, s64 newsize, int type);
/linux/arch/sh/mm/
H A Dpmb.c657 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 Dbmap.c1319 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 Drelocs.c254 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/udf/
H A Dinode.c630 static int udf_extend_file(struct inode *inode, loff_t newsize) in udf_extend_file() argument
638 sector_t first_block = newsize >> sb->s_blocksize_bits, offset; in udf_extend_file()
681 (newsize & (sb->s_blocksize - 1)); in udf_extend_file()
1239 int udf_setsize(struct inode *inode, loff_t newsize) in udf_setsize() argument
1250 if (newsize > inode->i_size) { in udf_setsize()
1253 (udf_file_entry_alloc_offset(inode) + newsize)) { in udf_setsize()
1255 iinfo->i_lenAlloc = newsize; in udf_setsize()
1263 err = udf_extend_file(inode, newsize); in udf_setsize()
1267 truncate_setsize(inode, newsize); in udf_setsize()
1272 memset(iinfo->i_data + iinfo->i_lenEAttr + newsize, in udf_setsize()
[all …]
/linux/fs/affs/
H A Dfile.c558 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 Dmd-cluster.h32 int (*resize_bitmaps)(struct mddev *mddev, sector_t newsize, sector_t oldsize);
/linux/fs/ntfs3/
H A Dfile.c762 loff_t newsize, oldsize; in ntfs3_setattr() local
771 newsize = attr->ia_size; in ntfs3_setattr()
773 if (newsize <= oldsize) in ntfs3_setattr()
774 err = ntfs_truncate(inode, newsize); in ntfs3_setattr()
776 err = ntfs_extend(inode, newsize, 0, NULL); in ntfs3_setattr()
782 i_size_write(inode, newsize); in ntfs3_setattr()
/linux/fs/nfs/
H A Dnfs4session.c39 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 Drnbd-clt.h141 int rnbd_clt_resize_disk(struct rnbd_clt_dev *dev, sector_t newsize);
/linux/drivers/md/bcache/
H A Dbset.c138 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()
/linux/security/
H A Dcommoncap.c542 size_t newsize; in cap_convert_nscap() local
567 newsize = sizeof(struct vfs_ns_cap_data); in cap_convert_nscap()
568 nscap = kmalloc(newsize, GFP_ATOMIC); in cap_convert_nscap()
580 return newsize; in cap_convert_nscap()
/linux/arch/mips/boot/tools/
H A Drelocs.c455 unsigned long newsize = r->size + 50000; in add_reloc() local
456 void *mem = realloc(r->offset, newsize * sizeof(r->offset[0])); in add_reloc()
462 r->size = newsize; in add_reloc()

12