Home
last modified time | relevance | path

Searched refs:order (Results 1 – 24 of 24) sorted by relevance

/fs/ramfs/
Dfile-nommu.c66 unsigned order; in ramfs_nommu_expand_for_mapping() local
71 order = get_order(newsize); in ramfs_nommu_expand_for_mapping()
72 if (unlikely(order >= MAX_ORDER)) in ramfs_nommu_expand_for_mapping()
83 pages = alloc_pages(mapping_gfp_mask(inode->i_mapping), order); in ramfs_nommu_expand_for_mapping()
88 xpages = 1UL << order; in ramfs_nommu_expand_for_mapping()
91 split_page(pages, order); in ramfs_nommu_expand_for_mapping()
/fs/ext4/
Dmballoc.c426 static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max) in mb_find_buddy() argument
433 if (order > e4b->bd_blkbits + 1) { in mb_find_buddy()
439 if (order == 0) { in mb_find_buddy()
444 bb = e4b->bd_buddy + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order]; in mb_find_buddy()
445 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order]; in mb_find_buddy()
543 int order = e4b->bd_blkbits + 1; in __mb_check_buddy() local
563 while (order > 1) { in __mb_check_buddy()
564 buddy = mb_find_buddy(e4b, order, &max); in __mb_check_buddy()
566 buddy2 = mb_find_buddy(e4b, order - 1, &max2); in __mb_check_buddy()
590 for (j = 0; j < (1 << order); j++) { in __mb_check_buddy()
[all …]
/fs/cramfs/
DREADME25 The order of inode traversal is described as "width-first" (not to be
28 same order as `ls -AUR' (but without the /^\..*:$/ directory header
29 lines); put another way, the same order as `find -type d -exec
52 The order of <file_data>'s is a depth-first descent of the directory
53 tree, i.e. the same order as `find -size +0 \( -type f -o -type l \)
/fs/yaffs2/
DKconfig62 bool "Use the same ecc byte order as Steven Hill's nand_ecc.c"
66 This makes yaffs_ecc.c use the same ecc byte order as Steven
68 order as SmartMedia.
/fs/hpfs/
DKconfig10 option in order to be able to read them. Read
/fs/reiserfs/
Dibalance.c762 int order; /* we return this: it is 0 if there is no S[h], else it is tb->S[h]->b_item_order */ in balance_internal() local
773 order = in balance_internal()
792 return order; in balance_internal()
933 return order; in balance_internal()
1088 return order; in balance_internal()
Dfix_node.c857 int order; in get_lfree() local
864 order = PATH_H_B_ITEM_ORDER(tb->tb_path, h) - 1; in get_lfree()
866 order = B_NR_ITEMS(l); in get_lfree()
870 return (MAX_CHILD_SIZE(f) - dc_size(B_N_CHILD(f, order))); in get_lfree()
879 int order; in get_rfree() local
886 order = PATH_H_B_ITEM_ORDER(tb->tb_path, h) + 1; in get_rfree()
888 order = 0; in get_rfree()
892 return (MAX_CHILD_SIZE(f) - dc_size(B_N_CHILD(f, order))); in get_rfree()
/fs/ecryptfs/
Dcrypto.c1289 unsigned int order) in ecryptfs_get_zeroed_pages() argument
1293 page = alloc_pages(gfp_mask | __GFP_ZERO, order); in ecryptfs_get_zeroed_pages()
1317 unsigned int order; in ecryptfs_write_metadata() local
1336 order = get_order(virt_len); in ecryptfs_write_metadata()
1338 virt = (char *)ecryptfs_get_zeroed_pages(GFP_KERNEL, order); in ecryptfs_write_metadata()
1364 free_pages((unsigned long)virt, order); in ecryptfs_write_metadata()
/fs/fat/
DKconfig15 order to make use of it.
20 order to do that.
/fs/jbd/
DKconfig22 enable debugging output while the system is running, in order to
/fs/jbd2/
Djournal.c2077 int order = get_order(size); in jbd2_alloc() local
2079 if (order < 3) in jbd2_alloc()
2080 ptr = (void *)__get_free_pages(flags, order); in jbd2_alloc()
2100 int order = get_order(size); in jbd2_free() local
2102 if (order < 3) in jbd2_free()
2103 free_pages((unsigned long)ptr, order); in jbd2_free()
DKconfig26 in order to help track down any problems you are having.
/fs/minix/
Dminix.h98 #error Minix file system byte order broken
/fs/sysv/
DKconfig11 that they contain binaries from those other Unix systems; in order
/fs/ocfs2/
DKconfig15 You'll want to install the ocfs2-tools package in order to at least
/fs/quota/
Ddquot.c2657 unsigned long nr_hash, order; in dquot_init() local
2669 order = 0; in dquot_init()
2670 dquot_hash = (struct hlist_head *)__get_free_pages(GFP_ATOMIC, order); in dquot_init()
2681 nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head); in dquot_init()
2694 nr_hash, order, (PAGE_SIZE << order)); in dquot_init()
/fs/ext3/
DKconfig25 e2fsprogs version 1.20 or later in order to create ext3 journals
/fs/squashfs/
DKconfig96 accesses of files in filesystem order) on all media.
/fs/jffs2/
DKconfig172 Tries the compressors in a predefined order and chooses the first
/fs/cifs/
DKconfig74 default in order to reduce the possibility of a downgrade
DREADME94 in order to reduce risks, the "nosuid" mount flag is passed in on mount to
379 opens and reads the credential file specified in order
494 in order to turn off multiple settings all at once (ie
735 a user space helper (such as cifs.upcall) to be present in order to
DCHANGES247 problem (instantiate inodes/dentries in right order for readdir).
479 or out of order NULL pointer checks in little used error paths).
656 being sent out of signature sequence number order.
916 Fix bigendian bug in order of time conversion. Merge 2.5 to 2.4 version. Formatting cleanup.
/fs/affs/
DChanges219 - Changed all network byte-order macros to the
/fs/befs/
DChangeLog280 * Removed byte-order conversion code.