/fs/nls/ |
D | Kconfig | 46 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/ |
D | Kconfig | 18 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 53 If you want to allow mounting a Virtio Filesystem with the "dax"
|
/fs/xfs/libxfs/ |
D | xfs_rtbitmap.c | 111 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/ |
D | posix_acl.c | 361 const struct posix_acl *acl, int want) in posix_acl_permission() argument 368 want &= MAY_READ | MAY_WRITE | MAY_EXEC; in posix_acl_permission() 389 if ((pa->e_perm & want) == want) in posix_acl_permission() 399 if ((pa->e_perm & want) == want) in posix_acl_permission() 419 if ((pa->e_perm & mask_obj->e_perm & want) == want) in posix_acl_permission() 426 if ((pa->e_perm & want) == want) in posix_acl_permission()
|
D | Kconfig.binfmt | 20 want to say Y here. 90 Say Y here if you want to execute interpreted scripts starting with 94 gets loaded, you cannot run scripts. Thus, if you want to load this 202 certainly want to say Y here. Not necessary on systems that never
|
/fs/isofs/ |
D | Kconfig | 9 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/ceph/ |
D | caps.c | 1001 int want = 0; in __ceph_caps_file_wanted() local 1006 want |= CEPH_CAP_ANY_SHARED; in __ceph_caps_file_wanted() 1010 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL; in __ceph_caps_file_wanted() 1012 want |= CEPH_CAP_ANY_DIR_OPS; in __ceph_caps_file_wanted() 1015 if (want || ci->i_nr_by_mode[PIN_SHIFT] > 0) in __ceph_caps_file_wanted() 1016 want |= CEPH_CAP_PIN; in __ceph_caps_file_wanted() 1018 return want; in __ceph_caps_file_wanted() 1342 int op, int flags, int used, int want, int retain, in __prep_cap() argument 1371 cap->mds_wanted = want; in __prep_cap() 1384 if (want & CEPH_CAP_ANY_FILE_WR) in __prep_cap() [all …]
|
D | file.c | 453 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_CREATE; in try_prep_async_create() local 468 if ((__ceph_caps_issued(ci, NULL) & want) != want) in try_prep_async_create() 487 ceph_take_cap_refs(ci, want, false); in try_prep_async_create() 491 got = want; in try_prep_async_create() 1557 int want, got = 0; in ceph_read_iter() local 1570 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO; in ceph_read_iter() 1572 want = CEPH_CAP_FILE_CACHE; in ceph_read_iter() 1573 ret = ceph_get_caps(filp, CEPH_CAP_FILE_RD, want, -1, &got); in ceph_read_iter() 1709 int err, want, got; in ceph_write_iter() local 1782 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO; in ceph_write_iter() [all …]
|
D | addr.c | 366 int want = CEPH_CAP_FILE_CACHE; in ceph_readahead() local 368 ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want, true, &got); in ceph_readahead() 371 else if (!(got & want)) in ceph_readahead() 1355 int want, got, err; in ceph_filemap_fault() local 1364 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO; in ceph_filemap_fault() 1366 want = CEPH_CAP_FILE_CACHE; in ceph_filemap_fault() 1369 err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1, &got); in ceph_filemap_fault() 1446 int want, got, err; in ceph_page_mkwrite() local 1478 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO; in ceph_page_mkwrite() 1480 want = CEPH_CAP_FILE_BUFFER; in ceph_page_mkwrite() [all …]
|
D | dir.c | 1111 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_UNLINK; in get_caps_for_async_unlink() local 1114 if ((__ceph_caps_issued(ci, NULL) & want) == want) { in get_caps_for_async_unlink() 1115 ceph_take_cap_refs(ci, want, false); in get_caps_for_async_unlink() 1116 got = want; in get_caps_for_async_unlink() 1132 want = 0; in get_caps_for_async_unlink() 1136 if (want == got) in get_caps_for_async_unlink()
|
/fs/affs/ |
D | Kconfig | 8 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/ufs/ |
D | Kconfig | 10 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
|
D | balloc.c | 811 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/nfs/ |
D | Kconfig | 9 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/vboxsf/ |
D | Kconfig | 10 If you want to use shared folders in VirtualBox guests, answer Y or M.
|
/fs/reiserfs/ |
D | README | 12 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/ |
D | Kconfig | 11 written in packet mode, or if you want to use UDF for removable USB
|
/fs/hpfs/ |
D | Kconfig | 9 partitions. Say Y if you want to be able to read files from and
|
/fs/notify/fanotify/ |
D | Kconfig | 21 Say Y here is you want fanotify listeners to be able to make permissions
|
/fs/qnx6/ |
D | Kconfig | 26 want this:
|
/fs/minix/ |
D | Kconfig | 10 You don't want to use the minix file system on your hard disk
|
/fs/bfs/ |
D | Kconfig | 10 partition. You should say Y if you want to read or write the files
|
/fs/afs/ |
D | Kconfig | 30 Say Y here if you want AFS data to be cached locally on disk through
|
/fs/adfs/ |
D | Kconfig | 10 and from ADFS-formatted floppy discs. If you also want to be able to
|
/fs/autofs/ |
D | Kconfig | 23 <https://www.kernel.org/pub/linux/daemons/autofs/>; you also want
|