Home
last modified time | relevance | path

Searched refs:want (Results 1 – 25 of 39) sorted by relevance

12

/fs/nls/
DKconfig46 codepage if you want to be able to read/write these filenames on
49 say Y here if you want to include the DOS codepage that is used in
58 codepage if you want to be able to read/write these filenames on
61 say Y here if you want to include the DOS codepage that is used for
70 codepage if you want to be able to read/write these filenames on
73 say Y here if you want to include the DOS codepage that is used
83 codepage if you want to be able to read/write these filenames on
86 say Y here if you want to include the DOS codepage that is used for
99 codepage if you want to be able to read/write these filenames on
102 say Y here if you want to include the Latin 2 codepage used by DOS
[all …]
/fs/fuse/
DKconfig18 If you want to develop a userspace FS, or if you want to use
28 If you want to develop or use a userspace character device
39 If you want to share files between guests or with the host, answer Y
/fs/xfs/libxfs/
Dxfs_rtbitmap.c111 xfs_rtword_t want; /* mask for "good" values */ in xfs_rtfind_back() local
135 want = (*b & ((xfs_rtword_t)1 << bit)) ? -1 : 0; in xfs_rtfind_back()
152 if ((wdiff = (*b ^ want) & mask)) { in xfs_rtfind_back()
198 if ((wdiff = *b ^ want)) { in xfs_rtfind_back()
245 if ((wdiff = (*b ^ want) & mask)) { in xfs_rtfind_back()
286 xfs_rtword_t want; /* mask for "good" values */ in xfs_rtfind_forw() local
310 want = (*b & ((xfs_rtword_t)1 << bit)) ? -1 : 0; in xfs_rtfind_forw()
326 if ((wdiff = (*b ^ want) & mask)) { in xfs_rtfind_forw()
371 if ((wdiff = *b ^ want)) { in xfs_rtfind_forw()
415 if ((wdiff = (*b ^ want) & mask)) { in xfs_rtfind_forw()
/fs/
Dposix_acl.c348 posix_acl_permission(struct inode *inode, const struct posix_acl *acl, int want) in posix_acl_permission() argument
353 want &= MAY_READ | MAY_WRITE | MAY_EXEC | MAY_NOT_BLOCK; in posix_acl_permission()
369 if ((pa->e_perm & want) == want) in posix_acl_permission()
376 if ((pa->e_perm & want) == want) in posix_acl_permission()
396 if ((pa->e_perm & mask_obj->e_perm & want) == want) in posix_acl_permission()
403 if ((pa->e_perm & want) == want) in posix_acl_permission()
DKconfig.binfmt20 want to say Y here.
84 Say Y here if you want to execute interpreted scripts starting with
88 gets loaded, you cannot run scripts. Thus, if you want to load this
166 Say Y here if you want to be able to execute Linux/Intel ELF
174 later load the module when you want to use a Linux/Intel binary. The
208 certainly want to say Y here. Not necessary on systems that never
/fs/isofs/
DKconfig9 driver. If you have a CD-ROM drive and want to do more with it than
28 want to be able to read Joliet CD-ROMs under Linux.
39 necessary to create such a filesystem. Say Y here if you want to be
/fs/affs/
DKconfig8 if you want to be able to read and write files from and to an Amiga
18 If you want to do this, you will also need to say Y or M to "Loop
/fs/nfs/
DKconfig9 Choose Y here if you want to access files residing on other
65 protocol extension and you want your NFS client to allow
164 If you want your system to mount its root file system via NFS,
175 Say Y here if you want NFS data to be cached locally on disc through
/fs/ufs/
DKconfig10 these partitions; if you also want to write to them, say Y to the
35 Say Y here if you want to try writing to UFS partitions. This is
Dballoc.c811 unsigned pos, want, blockmap, mask, end; in ufs_bitmap_search() local
853 want = want_arr[count]; in ufs_bitmap_search()
855 if ((blockmap & mask) == want) { in ufs_bitmap_search()
861 want <<= 1; in ufs_bitmap_search()
/fs/ceph/
Dcaps.c1270 int op, int flags, int used, int want, int retain, in __send_cap() argument
1302 ceph_cap_string(want)); in __send_cap()
1303 want |= cap->mds_wanted; in __send_cap()
1308 if (want & ~cap->mds_wanted) { in __send_cap()
1327 cap->mds_wanted = want; in __send_cap()
1356 arg.wanted = want; in __send_cap()
1827 int issued, implemented, want, retain, revoking, flushing = 0; in ceph_check_caps() local
1858 want = file_wanted; in ceph_check_caps()
1873 want = CEPH_CAP_ANY_SHARED; in ceph_check_caps()
1875 want = CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL; in ceph_check_caps()
[all …]
Dfile.c1264 int want, got = 0; in ceph_read_iter() local
1277 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO; in ceph_read_iter()
1279 want = CEPH_CAP_FILE_CACHE; in ceph_read_iter()
1280 ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1, in ceph_read_iter()
1420 int err, want, got; in ceph_write_iter() local
1489 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO; in ceph_write_iter()
1491 want = CEPH_CAP_FILE_BUFFER; in ceph_write_iter()
1493 err = ceph_get_caps(file, CEPH_CAP_FILE_WR, want, pos + count, in ceph_write_iter()
1779 int want, got = 0; in ceph_fallocate() local
1817 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO; in ceph_fallocate()
[all …]
Daddr.c328 int want = CEPH_CAP_FILE_CACHE; in start_read() local
329 ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want, in start_read()
333 } else if (!(got & want)) { in start_read()
1431 int want, got, err; in ceph_filemap_fault() local
1440 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO; in ceph_filemap_fault()
1442 want = CEPH_CAP_FILE_CACHE; in ceph_filemap_fault()
1445 err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1, in ceph_filemap_fault()
1526 int want, got, err; in ceph_page_mkwrite() local
1558 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO; in ceph_page_mkwrite()
1560 want = CEPH_CAP_FILE_BUFFER; in ceph_page_mkwrite()
[all …]
/fs/reiserfs/
DREADME12 want it to be owned by Hans Reiser, put your copyright label on that
67 Real users, as opposed to folks who want to hack and then understand
68 what went wrong, will want REISERFS_CHECK off.
101 that start on a node aligned boundary (there are reasons to want to node
/fs/udf/
DKconfig11 written in packet mode, or if you want to use UDF for removable USB
/fs/hpfs/
DKconfig8 partitions. Say Y if you want to be able to read files from and
/fs/notify/fanotify/
DKconfig21 Say Y here is you want fanotify listeners to be able to make permissions
/fs/qnx6/
DKconfig26 want this:
/fs/bfs/
DKconfig10 partition. You should say Y if you want to read or write the files
/fs/minix/
DKconfig10 You don't want to use the minix file system on your hard disk
/fs/afs/
DKconfig29 Say Y here if you want AFS data to be cached locally on disk through
/fs/adfs/
DKconfig10 and from ADFS-formatted floppy discs. If you also want to be able to
/fs/autofs/
DKconfig23 <https://www.kernel.org/pub/linux/daemons/autofs/>; you also want
/fs/gfs2/
DKconfig25 you want to use the DLM, be sure to enable IPv4/6 networking.
/fs/nfsd/
DKconfig13 Choose Y here if you want to allow other computers to access
142 Say Y here if you want enable fine-grained security label attribute

12