Home
last modified time | relevance | path

Searched refs:new_size (Results 1 – 25 of 110) sorted by relevance

12345

/linux/fs/xfs/libxfs/
H A Dxfs_inode_fork.c382 size_t new_size) in xfs_broot_alloc() argument
386 ifp->if_broot = kmalloc(new_size, in xfs_broot_alloc()
388 ifp->if_broot_bytes = new_size; in xfs_broot_alloc()
399 size_t new_size) in xfs_broot_realloc() argument
402 if (new_size == ifp->if_broot_bytes) in xfs_broot_realloc()
406 if (new_size == 0) { in xfs_broot_realloc()
417 if (ifp->if_broot_bytes > 0 && ifp->if_broot_bytes > new_size) { in xfs_broot_realloc()
420 ifp->if_broot = kmalloc(new_size, GFP_KERNEL | __GFP_NOFAIL); in xfs_broot_realloc()
421 ifp->if_broot_bytes = new_size; in xfs_broot_realloc()
422 memcpy(ifp->if_broot, old_broot, new_size); in xfs_broot_realloc()
[all …]
H A Dxfs_rtrefcount_btree.c291 size_t new_size, in xfs_rtrefcountbt_move_ptrs() argument
298 dptr = xfs_rtrefcount_broot_ptr_addr(mp, broot, 1, new_size); in xfs_rtrefcountbt_move_ptrs()
310 unsigned int new_size; in xfs_rtrefcountbt_broot_realloc() local
314 new_size = xfs_rtrefcount_broot_space_calc(mp, level, new_numrecs); in xfs_rtrefcountbt_broot_realloc()
317 if (new_size == old_size) in xfs_rtrefcountbt_broot_realloc()
320 if (new_size > old_size) { in xfs_rtrefcountbt_broot_realloc()
328 return xfs_broot_realloc(ifp, new_size); in xfs_rtrefcountbt_broot_realloc()
336 broot = xfs_broot_realloc(ifp, new_size); in xfs_rtrefcountbt_broot_realloc()
339 new_size, old_numrecs); in xfs_rtrefcountbt_broot_realloc()
348 if (new_size == 0) in xfs_rtrefcountbt_broot_realloc()
[all …]
H A Dxfs_bmap_btree.c512 size_t new_size, in xfs_bmbt_move_ptrs() argument
519 dptr = xfs_bmap_broot_ptr_addr(mp, broot, 1, new_size); in xfs_bmbt_move_ptrs()
549 unsigned int new_size; in xfs_bmap_broot_realloc() local
560 new_size = xfs_bmap_broot_space_calc(mp, new_numrecs); in xfs_bmap_broot_realloc()
563 if (new_size == old_size) in xfs_bmap_broot_realloc()
566 if (new_size > old_size) { in xfs_bmap_broot_realloc()
574 return xfs_broot_realloc(ifp, new_size); in xfs_bmap_broot_realloc()
583 broot = xfs_broot_realloc(ifp, new_size); in xfs_bmap_broot_realloc()
586 xfs_bmbt_move_ptrs(mp, broot, old_size, new_size, old_numrecs); in xfs_bmap_broot_realloc()
594 ASSERT(ifp->if_broot != NULL && old_size > 0 && new_size > 0); in xfs_bmap_broot_realloc()
[all …]
H A Dxfs_rtrmap_btree.c392 size_t new_size, in xfs_rtrmapbt_move_ptrs() argument
399 dptr = xfs_rtrmap_broot_ptr_addr(mp, broot, 1, new_size); in xfs_rtrmapbt_move_ptrs()
411 unsigned int new_size; in xfs_rtrmapbt_broot_realloc() local
415 new_size = xfs_rtrmap_broot_space_calc(mp, level, new_numrecs); in xfs_rtrmapbt_broot_realloc()
418 if (new_size == old_size) in xfs_rtrmapbt_broot_realloc()
421 if (new_size > old_size) { in xfs_rtrmapbt_broot_realloc()
429 return xfs_broot_realloc(ifp, new_size); in xfs_rtrmapbt_broot_realloc()
437 broot = xfs_broot_realloc(ifp, new_size); in xfs_rtrmapbt_broot_realloc()
439 xfs_rtrmapbt_move_ptrs(mp, broot, old_size, new_size, in xfs_rtrmapbt_broot_realloc()
449 if (new_size == 0) in xfs_rtrmapbt_broot_realloc()
[all …]
/linux/scripts/kconfig/
H A Dlexer.l67 int new_size = text_size + size + 1; in append_string() local
68 if (new_size > text_asize) { in append_string()
69 new_size += START_STRSIZE - 1; in append_string()
70 new_size &= -START_STRSIZE; in append_string()
71 text = xrealloc(text, new_size); in append_string()
72 text_asize = new_size; in append_string()
/linux/include/trace/events/
H A Dfscache.h463 TP_PROTO(struct fscache_cookie *cookie, loff_t new_size),
465 TP_ARGS(cookie, new_size),
469 __field(loff_t, new_size )
474 __entry->new_size = new_size;
478 __entry->cookie, __entry->new_size)
482 TP_PROTO(struct fscache_cookie *cookie, loff_t new_size),
484 TP_ARGS(cookie, new_size),
489 __field(loff_t, new_size )
495 __entry->new_size = new_size;
501 __entry->new_size)
/linux/kernel/module/
H A Ddecompress.c89 size_t new_size = 0; in module_gzip_decompress() local
127 new_size += PAGE_SIZE - s.avail_out; in module_gzip_decompress()
136 retval = new_size; in module_gzip_decompress()
156 size_t new_size = 0; in module_xz_decompress() local
187 new_size += xz_buf.out_pos; in module_xz_decompress()
196 retval = new_size; in module_xz_decompress()
218 size_t new_size = 0; in module_zstd_decompress() local
275 new_size += zstd_dec.pos; in module_zstd_decompress()
284 retval = new_size; in module_zstd_decompress()
/linux/arch/sparc/mm/
H A Dtsb.c370 static unsigned long tsb_size_to_rss_limit(unsigned long new_size) in tsb_size_to_rss_limit() argument
372 unsigned long num_ents = (new_size / sizeof(struct tsb)); in tsb_size_to_rss_limit()
399 unsigned long new_size, old_size, flags; in tsb_grow() local
409 for (new_size = 8192; new_size < max_tsb_size; new_size <<= 1UL) { in tsb_grow()
410 new_rss_limit = tsb_size_to_rss_limit(new_size); in tsb_grow()
416 if (new_size == max_tsb_size) in tsb_grow()
421 if (new_size > (PAGE_SIZE * 2)) in tsb_grow()
435 new_size = 8192; in tsb_grow()
449 tsb_init(new_tsb, new_size); in tsb_grow()
509 copy_tsb(old_tsb_base, old_size, new_tsb_base, new_size, in tsb_grow()
[all …]
/linux/tools/testing/selftests/filesystems/fuse/
H A Dfuse_mnt.c87 size_t new_size; in test_write() local
95 new_size = MAX(offset + size, content_size); in test_write()
97 if (new_size > content_size) in test_write()
98 content = realloc(content, new_size); in test_write()
100 content_size = new_size; in test_write()
/linux/kernel/
H A Dcrash_core.c358 unsigned long new_size) in __crash_shrink_memory() argument
366 ram_res->start = old_res->start + new_size; in __crash_shrink_memory()
371 if (!new_size) { in __crash_shrink_memory()
385 int crash_shrink_memory(unsigned long new_size) in crash_shrink_memory() argument
400 new_size = roundup(new_size, KEXEC_CRASH_MEM_ALIGN); in crash_shrink_memory()
401 if (new_size >= old_size) { in crash_shrink_memory()
402 ret = (new_size == old_size) ? 0 : -EINVAL; in crash_shrink_memory()
414 if (low_size > new_size) { in crash_shrink_memory()
419 ret = __crash_shrink_memory(&crashk_low_res, new_size); in crash_shrink_memory()
421 ret = __crash_shrink_memory(&crashk_res, new_size - low_size); in crash_shrink_memory()
/linux/tools/include/nolibc/sys/
H A Dmman.h47 void *sys_mremap(void *old_address, size_t old_size, size_t new_size, int flags, void *new_address) in sys_mremap() argument
50 new_size, flags, new_address); in sys_mremap()
54 void *mremap(void *old_address, size_t old_size, size_t new_size, int flags, void *new_address) in mremap() argument
56 void *ret = sys_mremap(old_address, old_size, new_size, flags, new_address); in mremap()
/linux/fs/jfs/
H A Dxattr.c602 int new_size) in ea_put() argument
608 if (new_size == 0) { in ea_put()
612 assert(new_size <= sizeof (ji->i_inline_ea)); in ea_put()
615 DXDsize(&ea_buf->new_ea, new_size); in ea_put()
619 rc = ea_write(inode, ea_buf->xattr, new_size, &ea_buf->new_ea); in ea_put()
626 rc = ea_write(inode, ea_buf->xattr, new_size, &ea_buf->new_ea); in ea_put()
672 int new_size; in __jfs_setxattr() local
688 new_size = sizeof (struct jfs_ea_list); in __jfs_setxattr()
704 new_size += EA_SIZE(ea); in __jfs_setxattr()
719 new_size += sizeof (struct jfs_ea) + namelen + 1 + value_len; in __jfs_setxattr()
[all …]
/linux/drivers/gpu/drm/i915/
H A Di915_deps.c81 unsigned int new_size = 2 * deps->fences_size; in i915_deps_grow() local
84 new_size = max(new_size, I915_DEPS_MIN_ALLOC_CHUNK); in i915_deps_grow()
85 new_fences = kmalloc_array(new_size, sizeof(*new_fences), deps->gfp); in i915_deps_grow()
94 deps->fences_size = new_size; in i915_deps_grow()
/linux/tools/bootconfig/
H A Dtest-bootconfig.sh57 new_size=$(wc -c < $INITRD)
66 xpass test $new_size -eq $total_size
72 xpass test $new_size -eq $(wc -c < $INITRD)
78 new_size=$(wc -c < $INITRD)
79 xpass test $new_size -eq $initrd_size
/linux/drivers/hid/
H A Dhid-gembird.c67 size_t new_size = *rsize + delta_size; in gembird_report_fixup() local
72 new_rdesc = devm_kzalloc(&hdev->dev, new_size, GFP_KERNEL); in gembird_report_fixup()
90 *rsize = new_size; in gembird_report_fixup()
/linux/fs/ubifs/
H A Dreplay.c58 loff_t new_size; member
187 min_blk = r->new_size / UBIFS_BLOCK_SIZE; in trun_remove_range()
188 if (r->new_size & (UBIFS_BLOCK_SIZE - 1)) in trun_remove_range()
286 r->new_size); in apply_replay_entry()
387 loff_t old_size, loff_t new_size) in insert_node() argument
410 r->new_size = new_size; in insert_node()
743 loff_t new_size = le64_to_cpu(ino->size); in replay_bud() local
749 &used, 0, new_size); in replay_bud()
755 loff_t new_size = le32_to_cpu(dn->size) + in replay_bud() local
761 &used, 0, new_size); in replay_bud()
[all …]
H A Dfile.c1105 loff_t old_size = inode->i_size, new_size = attr->ia_size; in do_truncation() local
1106 int offset = new_size & (UBIFS_BLOCK_SIZE - 1), budgeted = 1; in do_truncation()
1109 dbg_gen("ino %lu, size %lld -> %lld", inode->i_ino, old_size, new_size); in do_truncation()
1117 if (new_size & (UBIFS_BLOCK_SIZE - 1)) in do_truncation()
1129 if (new_size || err != -ENOSPC) in do_truncation()
1134 truncate_setsize(inode, new_size); in do_truncation()
1137 pgoff_t index = new_size >> PAGE_SHIFT; in do_truncation()
1156 new_size); in do_truncation()
1183 err = ubifs_jnl_truncate(c, inode, old_size, new_size); in do_truncation()
1212 loff_t new_size = attr->ia_size; in do_setattr() local
[all …]
/linux/kernel/kcsan/
H A Ddebugfs.c144 size_t new_size = 0; in insert_report_filterlist() local
158 new_size = (report_filterlist.size ?: 4) * 2; in insert_report_filterlist()
159 delay_free = new_addrs = kmalloc_array(new_size, sizeof(unsigned long), GFP_KERNEL); in insert_report_filterlist()
167 if (report_filterlist.used >= new_size) { in insert_report_filterlist()
178 report_filterlist.size = new_size; in insert_report_filterlist()
/linux/drivers/platform/x86/dell/dell-wmi-sysman/
H A Dpasswordattr-interface.c43 size_t password_type_size, current_password_size, new_size; in set_new_password() local
69 new_size = calculate_string_buffer(new); in set_new_password()
70 buffer_size = security_area_size + password_type_size + current_password_size + new_size; in set_new_password()
92 ret = populate_string_buffer(start, new_size, new); in set_new_password()
/linux/fs/xfs/
H A Dxfs_inode.h204 xfs_new_eof(struct xfs_inode *ip, xfs_fsize_t new_size) in xfs_new_eof() argument
208 if (new_size > i_size || new_size < 0) in xfs_new_eof()
209 new_size = i_size; in xfs_new_eof()
210 return new_size > ip->i_disk_size ? new_size : 0; in xfs_new_eof()
602 xfs_fsize_t new_size) in xfs_itruncate_extents() argument
604 return xfs_itruncate_extents_flags(tpp, ip, whichfork, new_size, 0); in xfs_itruncate_extents()
/linux/fs/ntfs3/
H A Dattrlist.c296 u64 new_size; in al_add_le() local
304 new_size = old_size + sz; in al_add_le()
306 new_asize = al_aligned(new_size); in al_add_le()
312 if (new_size > asize) { in al_add_le()
328 al->size = new_size; in al_add_le()
339 err = attr_set_size(ni, ATTR_LIST, NULL, 0, &al->run, new_size, in al_add_le()
340 &new_size, true, &attr); in al_add_le()
H A Dfile.c504 static int ntfs_truncate(struct inode *inode, loff_t new_size) in ntfs_truncate() argument
515 if (ni->i_valid > new_size) in ntfs_truncate()
516 ni->i_valid = new_size; in ntfs_truncate()
518 err = block_truncate_page(inode->i_mapping, new_size, in ntfs_truncate()
524 new_valid = ntfs_up_block(sb, min_t(u64, ni->i_valid, new_size)); in ntfs_truncate()
526 truncate_setsize(inode, new_size); in ntfs_truncate()
531 err = attr_set_size(ni, ATTR_DATA, NULL, 0, &ni->file.run, new_size, in ntfs_truncate()
576 loff_t i_size, new_size; in ntfs_fallocate() local
607 new_size = max(end, i_size); in ntfs_fallocate()
696 err = inode_newsize_ok(inode, new_size); in ntfs_fallocate()
[all …]
/linux/rust/helpers/
H A Dslab.c6 rust_helper_krealloc_node_align(const void *objp, size_t new_size, unsigned long align, in rust_helper_krealloc_node_align() argument
9 return krealloc_node_align(objp, new_size, align, flags, node); in rust_helper_krealloc_node_align()
/linux/drivers/comedi/
H A Dcomedi_buf.c210 unsigned long new_size) in comedi_buf_alloc() argument
217 new_size = (new_size + PAGE_SIZE - 1) & PAGE_MASK; in comedi_buf_alloc()
220 if (async->prealloc_bufsz == new_size) in comedi_buf_alloc()
227 if (new_size) { in comedi_buf_alloc()
228 unsigned int n_pages = new_size >> PAGE_SHIFT; in comedi_buf_alloc()
/linux/tools/testing/selftests/ublk/
H A Dtest_common.sh39 local new_size=$2
46 new_file=$(mktemp ublk_file_"${new_size}"_XXXXX)
47 truncate -s "${new_size}" "${new_file}"

12345