/fs/udf/ |
D | udfend.h | 8 static inline struct kernel_lb_addr lelb_to_cpu(struct lb_addr in) in lelb_to_cpu() argument 12 out.logicalBlockNum = le32_to_cpu(in.logicalBlockNum); in lelb_to_cpu() 13 out.partitionReferenceNum = le16_to_cpu(in.partitionReferenceNum); in lelb_to_cpu() 18 static inline struct lb_addr cpu_to_lelb(struct kernel_lb_addr in) in cpu_to_lelb() argument 22 out.logicalBlockNum = cpu_to_le32(in.logicalBlockNum); in cpu_to_lelb() 23 out.partitionReferenceNum = cpu_to_le16(in.partitionReferenceNum); in cpu_to_lelb() 28 static inline struct short_ad lesa_to_cpu(struct short_ad in) in lesa_to_cpu() argument 32 out.extLength = le32_to_cpu(in.extLength); in lesa_to_cpu() 33 out.extPosition = le32_to_cpu(in.extPosition); in lesa_to_cpu() 38 static inline struct short_ad cpu_to_lesa(struct short_ad in) in cpu_to_lesa() argument [all …]
|
/fs/ext4/ |
D | hash.c | 16 static void TEA_transform(__u32 buf[4], __u32 const in[]) in TEA_transform() argument 20 __u32 a = in[0], b = in[1], c = in[2], d = in[3]; in TEA_transform() 53 static __u32 half_md4_transform(__u32 buf[4], __u32 const in[8]) in half_md4_transform() 58 ROUND(F, a, b, c, d, in[0] + K1, 3); in half_md4_transform() 59 ROUND(F, d, a, b, c, in[1] + K1, 7); in half_md4_transform() 60 ROUND(F, c, d, a, b, in[2] + K1, 11); in half_md4_transform() 61 ROUND(F, b, c, d, a, in[3] + K1, 19); in half_md4_transform() 62 ROUND(F, a, b, c, d, in[4] + K1, 3); in half_md4_transform() 63 ROUND(F, d, a, b, c, in[5] + K1, 7); in half_md4_transform() 64 ROUND(F, c, d, a, b, in[6] + K1, 11); in half_md4_transform() [all …]
|
/fs/ceph/ |
D | quota.c | 131 struct inode *in; in lookup_quotarealm_inode() local 154 in = qri->inode; in lookup_quotarealm_inode() 156 in = ERR_PTR(ret); in lookup_quotarealm_inode() 158 in = ceph_lookup_inode(sb, realm->ino); in lookup_quotarealm_inode() 161 if (IS_ERR(in)) { in lookup_quotarealm_inode() 163 realm->ino, PTR_ERR(in)); in lookup_quotarealm_inode() 167 qri->inode = in; in lookup_quotarealm_inode() 171 return in; in lookup_quotarealm_inode() 214 struct inode *in; in get_quota_realm() local 232 in = has_inode ? igrab(realm->inode) : NULL; in get_quota_realm() [all …]
|
D | inode.c | 747 struct ceph_mds_reply_inode *info = iinfo->in; in ceph_fill_inode() 1172 static int splice_dentry(struct dentry **pdn, struct inode *in) in splice_dentry() argument 1179 if (S_ISDIR(in->i_mode)) { in splice_dentry() 1184 realdn = d_find_any_alias(in); in splice_dentry() 1203 realdn = d_splice_alias(in, dn); in splice_dentry() 1206 PTR_ERR(realdn), dn, in, ceph_vinop(in)); in splice_dentry() 1241 struct inode *in = NULL; in ceph_fill_trace() local 1284 tvino.ino = le64_to_cpu(rinfo->targeti.in->ino); in ceph_fill_trace() 1285 tvino.snap = le64_to_cpu(rinfo->targeti.in->snapid); in ceph_fill_trace() 1318 tvino.ino = le64_to_cpu(rinfo->targeti.in->ino); in ceph_fill_trace() [all …]
|
/fs/efs/ |
D | inode.c | 55 struct efs_inode_info *in; in efs_iget() local 66 in = INODE_INFO(inode); in efs_iget() 127 in->numextents = be16_to_cpu(efs_inode->di_numextents); in efs_iget() 128 in->lastextent = 0; in efs_iget() 132 extent_copy(&(efs_inode->di_u.di_extents[i]), &(in->extents[i])); in efs_iget() 133 if (i < in->numextents && in->extents[i].cooked.ex_magic != 0) { in efs_iget() 143 inode->i_ino, in->numextents, inode->i_mode); in efs_iget() 201 struct efs_inode_info *in = INODE_INFO(inode); in efs_map_block() local 209 last = in->lastextent; in efs_map_block() 211 if (in->numextents <= EFS_DIRECTEXTENTS) { in efs_map_block() [all …]
|
/fs/befs/ |
D | ChangeLog | 46 * Fixed bug in befs_find_brun_indirect() that would result in the wrong 47 block being read. It was introduced when adding byteswapping in 50 * Fixed a longstanding bug in befs_find_key() that would result in it 52 for. For example, this would cause files in the same directory with 61 * Documentation improvements in source. [WD] 63 * Makefile fix for independent module when CONFIG_MODVERSION is set in 76 * Made functions in endian.h to do the correct byteswapping, no matter 79 * Abbandoned silly checks for a NULL superblock pointer in debug.c. [WD] 99 would result in the filesystem using the on-disk uid and gid. [WD] 113 * Added new debug/warning/error print functions in debug.c. [all …]
|
/fs/ |
D | splice.c | 298 ssize_t generic_file_splice_read(struct file *in, loff_t *ppos, in generic_file_splice_read() argument 309 init_sync_kiocb(&kiocb, in); in generic_file_splice_read() 311 ret = call_read_iter(in, &kiocb, &to); in generic_file_splice_read() 314 file_accessed(in); in generic_file_splice_read() 770 static long do_splice_to(struct file *in, loff_t *ppos, in do_splice_to() argument 776 if (unlikely(!(in->f_mode & FMODE_READ))) in do_splice_to() 779 ret = rw_verify_area(READ, in, ppos, len); in do_splice_to() 786 if (unlikely(!in->f_op->splice_read)) in do_splice_to() 787 return warn_unsupported(in, "read"); in do_splice_to() 788 return in->f_op->splice_read(in, ppos, pipe, len, flags); in do_splice_to() [all …]
|
/fs/erofs/ |
D | decompressor_lzma.c | 166 kin = kmap(*rq->in); in z_erofs_lzma_decompress() 173 kunmap(*rq->in); in z_erofs_lzma_decompress() 196 strm->buf.in = kin + inputmargin; in z_erofs_lzma_decompress() 226 kunmap(rq->in[ni]); in z_erofs_lzma_decompress() 236 kin = kmap(rq->in[ni]); in z_erofs_lzma_decompress() 237 strm->buf.in = kin; in z_erofs_lzma_decompress() 247 if (!bounced && rq->out[no] == rq->in[ni]) { in z_erofs_lzma_decompress() 248 memcpy(strm->bounce, strm->buf.in, strm->buf.in_size); in z_erofs_lzma_decompress() 249 strm->buf.in = strm->bounce; in z_erofs_lzma_decompress() 255 if (rq->out[no] != rq->in[j]) in z_erofs_lzma_decompress() [all …]
|
D | decompressor.c | 125 struct page **in; in z_erofs_lz4_handle_inplace_io() local 140 DBG_BUGON(rq->in[i] == NULL); in z_erofs_lz4_handle_inplace_io() 142 if (rq->out[j] == rq->in[i]) in z_erofs_lz4_handle_inplace_io() 153 src = erofs_vm_map_ram(rq->in, nrpages_in); in z_erofs_lz4_handle_inplace_io() 161 in = rq->in; in z_erofs_lz4_handle_inplace_io() 176 inpage = kmap_atomic(*in); in z_erofs_lz4_handle_inplace_io() 182 ++in; in z_erofs_lz4_handle_inplace_io() 197 DBG_BUGON(*rq->in == NULL); in z_erofs_lz4_decompress_mem() 198 headpage = kmap_atomic(*rq->in); in z_erofs_lz4_decompress_mem() 314 if (rq->out[0] == *rq->in) { in z_erofs_shifted_transform() [all …]
|
D | zmap.c | 214 u8 *in, unsigned int pos, u8 *type) in decode_compactedbits() argument 216 const unsigned int v = get_unaligned_le32(in + pos / 8) >> (pos & 7); in decode_compactedbits() 225 unsigned int vcnt, u8 *in, int i) in get_compacted_la_distance() argument 235 in, encodebits * i, &type); in get_compacted_la_distance() 257 u8 *in, type; in unpack_compacted_index() local 270 in = m->kaddr + base; in unpack_compacted_index() 275 in, encodebits * i, &type); in unpack_compacted_index() 283 encodebits, vcnt, in, i); in unpack_compacted_index() 302 in, encodebits * (i - 1), &type); in unpack_compacted_index() 318 in, encodebits * i, &type); in unpack_compacted_index() [all …]
|
/fs/nls/ |
D | Kconfig | 35 If you specify a wrong value, it will use the built-in NLS; 43 The Microsoft FAT file system family can deal with filenames in 45 in so-called DOS codepages. You need to include the appropriate 49 say Y here if you want to include the DOS codepage that is used in 55 The Microsoft FAT file system family can deal with filenames in 57 in so-called DOS codepages. You need to include the appropriate 67 The Microsoft FAT file system family can deal with filenames in 69 in so-called DOS codepages. You need to include the appropriate 80 The Microsoft FAT file system family can deal with filenames in 81 native language character sets. These character sets are stored in [all …]
|
/fs/f2fs/ |
D | hash.c | 25 static void TEA_transform(unsigned int buf[4], unsigned int const in[]) in TEA_transform() argument 29 __u32 a = in[0], b = in[1], c = in[2], d = in[3]; in TEA_transform() 72 __u32 in[8], buf[4]; in TEA_hash_name() local 81 str2hashbuf(p, len, in, 4); in TEA_hash_name() 82 TEA_transform(buf, in); in TEA_hash_name()
|
/fs/affs/ |
D | Changes | 11 in readdir()) gives compiler warnings but is 52 - wrong sign in __affs_hash_dentry 53 - remove unnecessary check in affs_new_inode 95 - Corruption in truncate() bugfix [Ken Tyler <kent@werple.net.au>] 120 more consistent. Changed a bad example in the 123 - Sets the NOEXEC flag in read_super() for old file 131 - Cleanup of error handling in read_super(). 132 Didn't release all resources in case of an 140 - Cleanup of error handling in namei.c. (BH) 142 - Cleanup of error handling in file.c. (BH) [all …]
|
/fs/reiserfs/ |
D | README | 9 Reiser, or authorized to be licensed by him, have been in the past, 10 and likely will be in the future, licensed to other parties under 16 others or sending us a patch, and leaving the sentence in stating that 17 licensing is governed by the statement in this file, you accept this. 21 a check in the mail to you (for non-trivial improvements) when he 36 Finally, nothing in this license shall be interpreted to allow you to 41 to address the fair crediting issue in the next GPL version.) 52 mkreiserfs and other utilities are in reiserfs/utils, or wherever your 55 version of reiserfs that is in their kernel, with many important 60 which is in the kernel code, and relocating the utilities may require [all …]
|
/fs/xfs/ |
D | xfs_fsops.c | 29 xfs_growfs_data_t *in) /* growfs data input struct */ in xfs_growfs_data_private() argument 41 nb = in->newblocks; in xfs_growfs_data_private() 174 xfs_growfs_log_t *in) /* growfs log input struct */ in xfs_growfs_log_private() argument 178 nb = in->newblocks; in xfs_growfs_log_private() 182 in->isint == (mp->m_sb.sb_logstart != 0)) in xfs_growfs_log_private() 224 struct xfs_growfs_data *in) in xfs_growfs_data() argument 234 if (in->imaxpct != mp->m_sb.sb_imax_pct) { in xfs_growfs_data() 235 error = xfs_growfs_imaxpct(mp, in->imaxpct); in xfs_growfs_data() 240 if (in->newblocks != mp->m_sb.sb_dblocks) { in xfs_growfs_data() 241 error = xfs_growfs_data_private(mp, in); in xfs_growfs_data() [all …]
|
D | xfs_ioctl32.c | 62 struct xfs_growfs_data *in, in xfs_compat_growfs_data_copyin() argument 65 if (get_user(in->newblocks, &arg32->newblocks) || in xfs_compat_growfs_data_copyin() 66 get_user(in->imaxpct, &arg32->imaxpct)) in xfs_compat_growfs_data_copyin() 73 struct xfs_growfs_rt *in, in xfs_compat_growfs_rt_copyin() argument 76 if (get_user(in->newblocks, &arg32->newblocks) || in xfs_compat_growfs_rt_copyin() 77 get_user(in->extsize, &arg32->extsize)) in xfs_compat_growfs_rt_copyin() 461 struct xfs_growfs_data in; in xfs_file_compat_ioctl() local 463 if (xfs_compat_growfs_data_copyin(&in, arg)) in xfs_file_compat_ioctl() 468 error = xfs_growfs_data(mp, &in); in xfs_file_compat_ioctl() 473 struct xfs_growfs_rt in; in xfs_file_compat_ioctl() local [all …]
|
/fs/hfs/ |
D | trans.c | 33 int hfs_mac2asc(struct super_block *sb, char *out, const struct hfs_name *in) in hfs_mac2asc() argument 41 src = in->name; in hfs_mac2asc() 42 srclen = in->len; in hfs_mac2asc() 97 void hfs_asc2mac(struct super_block *sb, struct hfs_name *out, const struct qstr *in) in hfs_asc2mac() argument 105 src = in->name; in hfs_asc2mac() 106 srclen = in->len; in hfs_asc2mac()
|
/fs/jffs2/ |
D | TODO | 8 - disable compression in commit_write()? 15 decide which inodes should be in-core immediately after mount. 28 - Stop keeping name in-core with struct jffs2_full_dirent. If we keep the hash in 29 the full dirent, we only need to go to the flash in lookup() when we think we've 30 got a match, and in readdir(). 36 2. get_sb()->build_fs()->scan() path... Why get_sb() removes scan()'s crap in
|
/fs/proc/ |
D | Kconfig | 14 (there is a small number of Interrupt ReQuest lines in your computer 21 meaning it has to be given a location in the directory hierarchy. 23 /proc" or the equivalent line in /etc/fstab does the job. 25 The /proc file system is explained in the file 46 Exports the dump image of crashed kernel in ELF format. 55 underlying devices are initialized in crash recovery kernel. 56 Note that the device driver must be present in the crash 75 /proc/sys directory. They are explained in the files 76 in <file:Documentation/admin-guide/sysctl/>. Note that enabling this 81 limited in memory.
|
/fs/nfs/ |
D | Kconfig | 15 install the user space mount.nfs command which can be found in 17 Information about using the mount command is available in the 22 available in the kernel to mount NFS servers. Support for NFS 27 autoconfiguration" in the NETWORK menu, and select "Root file 29 module in this case. 39 (RFC 1094) in the kernel's NFS client. 49 (RFC 1813) in the kernel's NFS client. 82 (RFC 3530) in the kernel's NFS client. 85 space programs which can be found in the Linux nfs-utils package, 104 (RFC 5661) in the kernel's NFS client. [all …]
|
/fs/ntfs/ |
D | Kconfig | 14 without NTFS support enabled in the kernel. 27 If you are not using Windows NT, 2000, XP or 2003 in addition to 35 Y here. This will result in additional consistency checks to be 45 If you leave debugging messages disabled, this results in little 46 overhead, but enabling debug messages results in very significant 56 This enables the partial, but safe, write support in the NTFS driver. 68 Note: While write support is safe in this version (a rewrite from 70 write support, included in Linux 2.5.10 and before (since 1997),
|
/fs/pstore/ |
D | Kconfig | 151 buffer in RAM where it can be read back at some later point. 162 The common layer for pstore/blk (and pstore/ram in the future) 163 to manage storage in zones. 188 1) <hex_major><hex_minor> device number in hexadecimal representation, 201 6) PARTUUID=<UUID>/PARTNROFF=<int> to select a partition in relation 210 int "Size in Kbytes of kmsg dump log to store" 215 pstore/blk. The size is in KB and must be a multiple of 4. 233 int "Size in Kbytes of pmsg to store" 239 in KB and must be a multiple of 4. 245 int "Size in Kbytes of console log to store" [all …]
|
/fs/cifs/ |
D | winucase.c | 21 wchar_t cifs_toupper(wchar_t in); /* quiet sparse */ 627 cifs_toupper(wchar_t in) in cifs_toupper() argument 634 idx = (in & 0xff00) >> 8; in cifs_toupper() 639 return in; in cifs_toupper() 642 idx = in & 0xff; in cifs_toupper() 649 return in; in cifs_toupper()
|
/fs/jfs/ |
D | Kconfig | 8 available in the file <file:Documentation/admin-guide/jfs.rst>. 29 labels in the jfs filesystem. 39 Y here. This will result in additional debugging messages to be 41 results in very little overhead. 48 to be made available to the user in the /proc/fs/jfs/ directory.
|
/fs/nfsd/ |
D | Kconfig | 18 You may choose to use a user-space NFS server instead, in which 22 user space programs which can be found in the Linux nfs-utils 42 This option enables support in your system's NFS server for 59 This option enables support in your system's NFS server for the 81 This option enables support in your system's NFS server for 85 space programs which can be found in the Linux nfs-utils package, 100 in the kernel's NFS server. The pNFS block layout enables NFS 114 in the kernel's NFS server. The pNFS SCSI layout enables NFS 127 layouts in the kernel's NFS server. The pNFS Flex File layout 134 not for use in production.
|