/linux-4.1.27/fs/ |
D | file.c | 142 static int expand_fdtable(struct files_struct *files, int nr) in expand_fdtable() argument 143 __releases(files->file_lock) in expand_fdtable() 144 __acquires(files->file_lock) in expand_fdtable() 148 spin_unlock(&files->file_lock); in expand_fdtable() 150 spin_lock(&files->file_lock); in expand_fdtable() 165 cur_fdt = files_fdtable(files); in expand_fdtable() 169 rcu_assign_pointer(files->fdt, new_fdt); in expand_fdtable() 170 if (cur_fdt != &files->fdtab) in expand_fdtable() 187 static int expand_files(struct files_struct *files, int nr) in expand_files() argument 191 fdt = files_fdtable(files); in expand_files() [all …]
|
D | pipe.c | 58 if (pipe->files) in pipe_lock_nested() 73 if (pipe->files) in pipe_unlock() 536 if (!--pipe->files) { in put_pipe_info() 652 pipe->files = 2; in get_pipe_inode() 727 static int __do_pipe_flags(int *fd, struct file **files, int flags) in __do_pipe_flags() argument 735 error = create_pipe_files(files, flags); in __do_pipe_flags() 757 fput(files[0]); in __do_pipe_flags() 758 fput(files[1]); in __do_pipe_flags() 764 struct file *files[2]; in do_pipe_flags() local 765 int error = __do_pipe_flags(fd, files, flags); in do_pipe_flags() [all …]
|
D | libfs.c | 478 struct tree_descr *files) in simple_fill_super() argument 507 for (i = 0; !files->name || files->name[0]; i++, files++) { in simple_fill_super() 508 if (!files->name) in simple_fill_super() 517 dentry = d_alloc_name(root, files->name); in simple_fill_super() 525 inode->i_mode = S_IFREG | files->mode; in simple_fill_super() 527 inode->i_fop = files->ops; in simple_fill_super()
|
D | coredump.c | 489 struct file *files[2]; in umh_pipe_setup() local 491 int err = create_pipe_files(files, 0); in umh_pipe_setup() 495 cp->file = files[1]; in umh_pipe_setup() 497 err = replace_fd(0, files[0], 0); in umh_pipe_setup() 498 fput(files[0]); in umh_pipe_setup()
|
/linux-4.1.27/include/linux/ |
D | fdtable.h | 66 #define rcu_dereference_check_fdtable(files, fdtfd) \ argument 67 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock)) 69 #define files_fdtable(files) \ argument 70 rcu_dereference_check_fdtable((files), (files)->fdt) 75 static inline struct file *__fcheck_files(struct files_struct *files, unsigned int fd) in __fcheck_files() argument 77 struct fdtable *fdt = rcu_dereference_raw(files->fdt); in __fcheck_files() 84 static inline struct file *fcheck_files(struct files_struct *files, unsigned int fd) in fcheck_files() argument 87 lockdep_is_held(&files->file_lock), in fcheck_files() 89 return __fcheck_files(files, fd); in fcheck_files() 95 #define fcheck(fd) fcheck_files(current->files, fd) [all …]
|
/linux-4.1.27/fs/proc/ |
D | fd.c | 21 struct files_struct *files = NULL; in seq_show() local 30 files = get_files_struct(task); in seq_show() 33 if (files) { in seq_show() 36 spin_lock(&files->file_lock); in seq_show() 37 file = fcheck_files(files, fd); in seq_show() 39 struct fdtable *fdt = files_fdtable(files); in seq_show() 48 spin_unlock(&files->file_lock); in seq_show() 49 put_files_struct(files); in seq_show() 59 show_fd_locks(m, file, files); in seq_show() 85 struct files_struct *files; in tid_fd_revalidate() local [all …]
|
D | Kconfig | 7 your hard disk: the files are created on the fly by the kernel when 8 you try to access them. Also, you cannot read the files with older 57 /proc/sys directory. They are explained in the files 70 Various /proc files exist to monitor process memory utilization:
|
D | task_nommu.c | 59 if (current->files && atomic_read(¤t->files->count) > 1) in task_mem() 60 sbytes += kobjsize(current->files); in task_mem() 62 bytes += kobjsize(current->files); in task_mem()
|
/linux-4.1.27/scripts/ |
D | Makefile.clean | 38 __clean-files := $(extra-y) $(extra-m) $(extra-) \ 39 $(always) $(targets) $(clean-files) \ 43 __clean-files := $(filter-out $(no-clean-files), $(__clean-files)) 49 __clean-files := $(wildcard \ 50 $(addprefix $(obj)/, $(filter-out $(objtree)/%, $(__clean-files))) \ 51 $(filter $(objtree)/%, $(__clean-files))) 62 cmd_clean = rm -f $(__clean-files) 68 ifneq ($(strip $(__clean-files)),)
|
D | Makefile.headersinst | 38 wrapper-files := $(filter $(header-y), $(generic-y)) 47 all-files := $(header-y) $(genhdr-y) $(wrapper-files) 48 output-files := $(addprefix $(installdir)/, $(all-files)) 71 unwanted := $(filter-out $(all-files),$(oldheaders)) 78 quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ 79 file$(if $(word 2, $(all-files)),s)) 84 for F in $(wrapper-files); do \ 92 quiet_cmd_check = CHECK $(printdir) ($(words $(all-files)) files) 95 cmd_check = for f in $(all-files); do \ 119 $(check-file): scripts/headers_check.pl $(output-files) FORCE
|
D | Makefile.dtbinst | 31 dtbinst-files := $(dtb-y) 40 $(dtbinst-files) $(dtbinst-dirs): | __dtbs_install_prep 42 $(dtbinst-files): %.dtb: $(obj)/%.dtb 48 PHONY += $(dtbinst-files) $(dtbinst-dirs) 49 __dtbs_install: $(dtbinst-files) $(dtbinst-dirs)
|
D | checkkconfigsymbols.py | 118 files = sorted(undefined_b.get(feature)) 119 print "%s\t%s" % (feature, ", ".join(files)) 122 files = sorted(undefined_b.get(feature) - 124 if files: 125 print "%s\t%s" % (feature, ", ".join(files)) 134 files = sorted(undefined.get(feature)) 135 print "%s\t%s" % (feature, ", ".join(files))
|
D | cleanfile | 80 @files = (); 91 push(@files, $a); 95 foreach $f ( @files ) {
|
D | cleanpatch | 80 @files = (); 91 push(@files, $a); 95 foreach $f ( @files ) {
|
D | headers_check.pl | 24 my ($dir, $arch, @files) = @ARGV; 31 foreach my $file (@files) {
|
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/ |
D | .gitignore | 2 # NOTE! Don't add files that are generated in specific 6 # NOTE! Please use 'git ls-files -i --exclude-standard' 8 # any tracked files which get ignored after the change. 41 # Top-level generic files 63 # git files that we don't want to ignore even it they are dot-files 69 # Generated include files 78 # quilt's files 82 # cscope files 86 # gnu global files
|
D | Kbuild | 80 # Keep these two files during make clean 81 no-clean-files := $(bounds-file) $(offsets-file)
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_debugfs.c | 103 struct drm_info_list *files, in qxl_debugfs_add_files() argument 109 if (qdev->debugfs[i].files == files) { in qxl_debugfs_add_files() 121 qdev->debugfs[qdev->debugfs_count].files = files; in qxl_debugfs_add_files() 125 drm_debugfs_create_files(files, nfiles, in qxl_debugfs_add_files() 128 drm_debugfs_create_files(files, nfiles, in qxl_debugfs_add_files() 141 drm_debugfs_remove_files(qdev->debugfs[i].files, in qxl_debugfs_remove_files() 144 drm_debugfs_remove_files(qdev->debugfs[i].files, in qxl_debugfs_remove_files()
|
/linux-4.1.27/Documentation/filesystems/ |
D | files.txt | 4 This document describes how locking for files (struct file) 5 and file descriptor table (struct files) works. 8 with a lock (files->file_lock) and reference count (files->count). 15 The files (struct file) themselves are protected using 30 and files->fdtab points to the new structure. The fdtable 43 fdt = files_fdtable(files); 58 3. For any update to the fd table, files->file_lock must 83 file = fcheck_files(files, fd); 106 holding files->file_lock. If ->file_lock is dropped, then 107 another thread expand the files thereby creating a new [all …]
|
D | hfs.txt | 21 used for creating new files. Default values: '????'. 24 Specifies the user/group that owns all files on the filesystems. 28 Specifies the umask used for all files , all directories or all 29 files and directories. Defaults to the umask of the mounting process. 53 and gid of files. 54 o You can't create hard- or symlinks, device files, sockets or FIFOs. 57 non-standard forks are represented as hidden additional files in the normal 61 o You can't create, delete or rename resource forks of files or the 65 o Copying files to a different filesystem will loose those attributes
|
D | ecryptfs.txt | 4 For documentation, please see the files in the doc/ subdirectory. For 31 eCryptfs, you should copy the files to an unencrypted location and 32 then copy the files back into the new eCryptfs mount to migrate the 33 files. 39 files (i.e., /root/crypt). Then, create the mount point directory 68 or (2) directories containing files only created by eCryptfs. If you 69 mount a directory that has pre-existing files not created by eCryptfs,
|
D | isofs.txt | 3 gid=nnn All files in the partition will be in group nnn. 4 uid=nnn All files in the partition will be owned by user id nnn. 26 mode=xxx Sets the permissions on files to xxx unless Rock Ridge 30 overriderockperm Set permissions on files and directories according to 35 hide Completely strip hidden files from the file system. 36 showassoc Show files marked with the 'associated' bit 37 unhide Deprecated; showing hidden files is now default;
|
D | dnotify.txt | 7 to be notified when a directory, or any of the files in it, are changed. 41 The notification should work for any local access to files even if the 43 access to files served by local user mode servers should be notified. 44 Also, remote accesses to files served by a local kernel NFS server should 48 the problem of hard links to files has been ignored. So if a file (x) 54 Also, files that are unlinked, will still cause notifications in the
|
D | nilfs2.txt | 6 system, users can even restore files mistakenly overwritten or 212 files without data blocks or B-tree node blocks. 223 The logs include regular files, directory files, symbolic link files 224 and several meta data files. The mata data files are the files used 226 the following meta data files: 242 To stride over segment boundaries, this sequence of files may be split 250 of regular files, directories, symlinks and other special files, are 253 among NILFS2 files can be depicted as follows:
|
D | squashfs.txt | 5 It uses zlib, lz4, lzo, or xz compression to compress files, inodes and 27 Max files: unlimited unlimited 94 Compressed data blocks are written to the filesystem as files are read from 126 regular files and directories, and extended types where extra 139 fact that (in most cases) the inodes of the files will be in the same 162 Regular files consist of a sequence of contiguous compressed blocks, and/or a 167 To speed up access to datablocks when reading 'large' files (256 Mbytes or 171 The index cache allows Squashfs to handle large files (up to 1.75 TiB) while 173 is split into slots, caching up to eight 224 GiB files (128 KiB blocks). 174 Larger files use multiple slots, with 1.75 TiB files using all 8 slots. [all …]
|
D | hpfs.txt | 16 Set owner/group/mode for files that do not have it specified in extended 19 that for files mode is anded with 0666. If you want files to have 'x' 58 because kernel creates different files with names like bootsect.S and 117 (note, that files in HPFS directory must be sorted) and when searching for 143 OS/2 can't access files if the path is longer than about 256 chars but this 146 Sometimes you won't be able to delete some files on a very full filesystem 152 to delete other files that are leaf (probability that the file is non-leaf is 162 Renaming files so that only case changes doesn't work. This driver supports it 170 (lost files, unbalanced directories). (I guess all filesystem may do it). 184 Workaround is to move all files from that directory to another and then back [all …]
|
D | ntfs.txt | 24 ntfsundelete used for recovering files that were unintentionally deleted 55 write support. The biggest limitation at present is that files/directories 57 are so far supported. Another limitation is that writing to compressed files 59 files is so far implemented. 60 - The new driver has full support for sparse files on NTFS 3.x volumes which 64 - The new driver supports loopback mounting of files on NTFS which is used by 77 compatibility, we implement access to files using their short file names if 86 only very limited support for highly fragmented files, i.e. ones which have 88 limitation is that at present truncate(2) will never create sparse files, 94 clusters. But at present only limited support for highly fragmented files, [all …]
|
D | hfsplus.txt | 17 used for creating new files. Default values: '????'. 20 Specifies the user/group that owns all files on the filesystem 25 Specifies the umask (in octal) used for files and directories
|
D | cramfs.txt | 28 Hard links are supported, but hard linked files 36 (1970 GMT). Recently-accessed files may have updated timestamps, but 59 >44 ulelong x fsid.files %d 69 >556 ulelong x fsid.files %d
|
D | spufs.txt | 19 set of files. These files can be used for manipulating the state of the 20 logical SPU. Users can change permissions on those files, but not actu- 21 ally add or remove files. 33 The files in spufs mostly follow the standard behavior for regular sys- 39 All files that support the read(2) operation also support readv(2) and 40 all files that support the write(2) operation also support writev(2). 41 All files support the access(2) and stat(2) family of operations, but 45 All files support the chmod(2)/fchmod(2) and chown(2)/fchown(2) opera- 49 The current set of files is: 131 Read-only files that contain the length of the current queue, i.e. how [all …]
|
D | dax.txt | 1 Direct Access for files 7 The page cache is usually used to buffer reads and writes to files. 60 - implementing an mmap file operation for DAX files which sets the 64 - calling dax_truncate_page() instead of block_truncate_page() for DAX files 65 - calling dax_zero_page_range() instead of zero_user() for DAX files
|
D | debugfs.txt | 9 files exported there. The real world is not always so simple, though [1]; 26 debugfs files: 33 dentry pointer which can be used to create files in the directory (and to 68 These files support both reading and writing the given value; if a specific 70 values in these files are in decimal; if hexadecimal is more appropriate, 119 any code which does so in the mainline. Note that all files created with 172 be prepared to remove all files and directories they create there. A file 180 pointer for every debugfs file they created so that all files could be
|
D | efivarfs.txt | 20 files that are not well-known standardized variables are created 21 as immutable files. This doesn't prevent removal - "chattr -i" will work -
|
D | udf.txt | 31 unhide Show otherwise hidden files. 32 undelete Show deleted files in lists. 42 They will also accept the string "ignore" and "forget". For files on the disk 51 ignore options. This way the interactive user will always see the files
|
D | xfs.txt | 7 support large files and large filesystems, extended attributes, 170 Some files or directories may not be accessible because of this. 300 Controls files created in SGID directories. 309 inherited by files in that directory. 314 inherited by files in that directory. 319 inherited by files in that directory. 324 inherited by files in that directory. 329 inherited by files in that directory. 333 files the allocator attempts to allocate in the same allocation 336 allocation groups when allocating extents for new files.
|
D | adfs.txt | 4 uid=nnn All files in the partition will be owned by 6 gid=nnn All files in the partition will be in group 67 To enable non-RISC OS systems to be used to store files without losing
|
D | sysfs-pci.txt | 30 files, each with their own function. 59 The read only files are informational, writes to them will be ignored, with 60 the exception of the 'rom' file. Writable files can be used to perform 62 mmapable files are available via an mmap of the file at offset 0 and can be
|
D | ramfs-rootfs-initramfs.txt | 13 Normally all files are cached in memory by Linux. Pages of data read from 17 written to files is marked clean as soon as it has been written to backing 54 synthetic block devices, now from files instead of from chunks of memory. 61 up all memory, and the VM can't free it because the VM thinks that files 141 archive, a directory containing files to be archived, or a text file 160 two example "file" entries expect to find files named "init.sh" and "busybox" in 174 or extracting your own preprepared cpio files to feed to the kernel build 178 or by the kernel build) back into its component files: 210 work. The Linux kernel cpio extractor won't create files in a directory that 211 doesn't exist, so the directory entries must go before the files that go in [all …]
|
D | omfs.txt | 32 uid=n - make all files owned by specified user 33 gid=n - make all files owned by specified group 35 fmask=xxx - set umask to xxx for files
|
D | sysv-fs.txt | 52 Of course, this affects only the file system, not the data of files on it! 59 Of course, this affects only the file system, not the data of files on it! 191 - Xenix FS kludge: as regular files with chmod 1000 193 - Coherent FS kludge: as regular files with chmod 1000
|
D | tmpfs.txt | 1 Tmpfs is a file system which keeps all files in virtual memory. 4 Everything in tmpfs is temporary in the sense that no files will be 9 shrinks to accommodate the files it contains and is able to swap 51 loop mounts of tmpfs files do work, so mkinitrd shipped by most 82 all files in that instance (if CONFIG_NUMA is enabled) - which can be
|
D | btrfs.txt | 22 * Space efficient packing of small files 52 Auto defragmentation detects small random writes into files and queue 53 them up for the defrag process. Works best for small files; 88 all files will be compressed, whether or not they compress well. 159 Enable/disable data copy-on-write for newly created files. 164 Enable/disable data checksumming for newly created files.
|
D | mandatory-locking.txt | 31 cooperative file locking used to guarantee sequential access to files among 52 possible on existing user code. The scheme is based on marking individual files 58 fcntl() is such that it allows the locking of byte ranges in files, in addition 59 to entire files, so the mandatory locking rules also have byte level 108 mandatory locks, so reads and writes to locked files always block when they 168 havoc if they lock crucial files. The way around it is to change the file
|
/linux-4.1.27/Documentation/ |
D | gcov.txt | 27 This will create source code files annotated with execution counts 74 To enable profiling for specific files or directories, add a line 80 For all files in one directory: 83 To exclude files from being profiled even when CONFIG_GCOV_PROFILE_ALL 90 Only files which are linked to the main kernel image or are compiled as 97 The gcov kernel support creates the following files in debugfs: 100 Parent directory for all gcov-related files. 146 gcc version used for kernel build. Also the following files need to be 150 - all C source files + headers 153 - all C source files + headers [all …]
|
D | kernel-doc-nano-HOWTO.txt | 16 This style embeds the documentation within the source files, using 30 functions externally visible to other kernel files (not marked 38 Data structures visible in kernel include files should also be 109 source files" for more details and notes on how to format kernel-doc 127 These are SGML template files, which are normal SGML files with 133 This is a program for converting SGML template files into SGML 134 files. When a file is referenced it is searched for symbols 139 Additionally it is used to scan the SGML template files to locate 140 all the files referenced herein. This is used to generate dependency 146 to build XML DocBook files, PostScript files, PDF files, and html files [all …]
|
D | xz.txt | 33 .xz files from userspace. The decompressed output is thrown away. 39 same as in other decompress_*.c files, which is defined in 58 when encoding files that are supposed to be decoded by the kernel. With 72 dictionaries cannot be used for files that are intended to be decoded 75 in XZ Utils may not be optimal when creating files for the kernel, 104 it is good to know this if testing the code e.g. with the test files
|
D | isapnp.txt | 13 The regular files contain the contents of ISA PnP registers for
|
/linux-4.1.27/arch/mips/ |
D | Kbuild | 1 # Fail on warnings - also for files referenced in subdirs 2 # -Werror can be disabled for specific files using: 14 # mips object files 15 # The object files are linked as core-y files would be linked
|
/linux-4.1.27/fs/jffs2/ |
D | LICENCE | 1 The files in this directory and elsewhere which refer to this LICENCE 20 As a special exception, if other files instantiate templates or use 21 macros or inline functions from these files, or you compile these 22 files and link them with other works to produce a work based on these 23 files, these files do not by themselves cause the resulting work to be 25 these files must still be made available in accordance with section (3)
|
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/ |
D | parse-torture.sh | 52 …nerrs=`grep --binary-files=text '!!!' $file | tail -1 | awk '{for (i=NF-8;i<=NF;i++) sum+=$i; } EN… 58 grep --binary-files=text 'torture:.*ver:' $file | grep --binary-files=text -v '(null)' | sed -e 's/… 99 …echo $title no success message, `grep --binary-files=text 'ver:' $file | wc -l` successful version…
|
/linux-4.1.27/scripts/kconfig/ |
D | kxgettext.c | 87 struct file_line *files; member 100 self->files = file_line__new(file, lineno); in message__new() 101 if (self->files == NULL) in message__new() 113 free(self->files); in message__new() 142 fl->next = self->files; in message__add_file_line() 143 self->files = fl; in message__add_file_line() 191 struct file_line *fl = self->files; in message__print_file_lineno()
|
D | Makefile | 62 --files-from=$(srctree)/scripts/kconfig/POTFILES.in \ 179 clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck 180 clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h 181 clean-files += config.pot linux.pot
|
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/crypto/asymmetric_keys/ |
D | Makefile | 31 clean-files += x509-asn1.c x509-asn1.h 32 clean-files += x509_akid-asn1.c x509_akid-asn1.h 33 clean-files += x509_rsakey-asn1.c x509_rsakey-asn1.h 48 clean-files += pkcs7-asn1.c pkcs7-asn1.h 70 clean-files += mscode-asn1.c mscode-asn1.h
|
/linux-4.1.27/scripts/selinux/ |
D | install_policy.sh | 25 mkdir -p /etc/selinux/dummy/contexts/files 27 cp file_contexts /etc/selinux/dummy/contexts/files 30 FC_FILE=/etc/selinux/dummy/contexts/files/file_contexts 56 cd /etc/selinux/dummy/contexts/files
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_debugfs.c | 87 int drm_debugfs_create_files(const struct drm_info_list *files, int count, in drm_debugfs_create_files() argument 96 u32 features = files[i].driver_features; in drm_debugfs_create_files() 107 ent = debugfs_create_file(files[i].name, S_IFREG | S_IRUGO, in drm_debugfs_create_files() 111 root->d_name.name, files[i].name); in drm_debugfs_create_files() 119 tmp->info_ent = &files[i]; in drm_debugfs_create_files() 128 drm_debugfs_remove_files(files, count, minor); in drm_debugfs_create_files() 191 int drm_debugfs_remove_files(const struct drm_info_list *files, int count, in drm_debugfs_remove_files() argument 202 if (tmp->info_ent == &files[i]) { in drm_debugfs_remove_files()
|
/linux-4.1.27/Documentation/infiniband/ |
D | sysfs.txt | 4 following files under /sys/class/infiniband/<device name>: 20 In each port subdirectory, the following files are created: 31 There is also a "counters" subdirectory, with files 50 Each of these files contains the corresponding value from the port's 61 The Mellanox HCA driver also creates the files:
|
D | user_verbs.txt | 23 Commands are sent to the kernel via write()s on these device files. 56 /dev files 58 To create the appropriate character device files automatically with
|
D | user_mad.txt | 3 Device files 131 /dev files 133 To create the appropriate character device files automatically with 145 associated with these devices can be determined from the files
|
/linux-4.1.27/Documentation/misc-devices/ |
D | ad525x_dpot.txt | 15 Each dpot device will have a set of eeprom, rdac, and tolerance files. How 18 The eeprom files are used to program the startup value of the device. 20 The rdac files are used to program the immediate value of the device. 22 The tolerance files are the read-only factory programmed tolerance settings 43 You can use simple reads/writes to access these files:
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | README-SRC | 9 You don't need to actually assemble these files in order to compile a 10 workin m68k kernel, the precompiled .sa files in arch/m68k/ifpsp060 11 are sufficient and were generated from these source files by
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | fault_injection.txt | 17 work over NFS (open files, take locks, ...). 20 <debug_dir>/nfsd. This will show a list of files that will be used for 40 The NFS server keeps a list of what files are currently opened and who 42 its files. 45 The NFS server keeps a list of what files are currently locked in the VFS. 46 Clearing this list will force the client to reclaim its locks (files are 65 will detect the mounted debugfs directory and write to the files located there
|
/linux-4.1.27/drivers/firmware/efi/libstub/ |
D | efi-stub-helper.c | 365 struct file_info *files; in handle_cmdline_files() local 409 nr_files * sizeof(*files), (void **)&files); in handle_cmdline_files() 427 file = &files[i]; in handle_cmdline_files() 490 size = files[j].size; in handle_cmdline_files() 498 status = efi_file_read(files[j].handle, in handle_cmdline_files() 509 efi_file_close(files[j].handle); in handle_cmdline_files() 514 efi_call_early(free_pool, files); in handle_cmdline_files() 526 efi_file_close(files[k].handle); in handle_cmdline_files() 528 efi_call_early(free_pool, files); in handle_cmdline_files()
|
/linux-4.1.27/tools/usb/usbip/ |
D | INSTALL | 21 It may also create one or more `.h' files containing system-dependent 31 cache files. 58 4. Type `make install' to install the programs and any data files and 61 5. You can remove the program binaries and object files from the 63 files that `configure' created (so you can compile the package for 67 all sorts of other programs in order to regenerate files that came 71 files again. 92 same time, by placing the object files for each architecture in their 94 directory where you want the object files and executables to go and run 107 `/usr/local/bin', include files under `/usr/local/include', etc. You [all …]
|
/linux-4.1.27/Documentation/input/ |
D | edt-ft5x06.txt | 15 The driver allows configuration of the touch screen via a set of sysfs files: 31 For debugging purposes the driver provides a few files in the debug 33 you'll find the following files: 49 files triggers a new readout. It is recommended to provide a buffer 53 mode. The same happens when reading/writing to the parameter files when the
|
/linux-4.1.27/Documentation/kbuild/ |
D | makefiles.txt | 9 === 3 The kbuild files 43 --- 6.10 Generic header files 70 (the resident kernel image) and modules (any module files). 93 any kernel Makefiles (or any other source files). 112 === 3 The kbuild files 117 The preferred name for the kbuild files are 'Makefile' but 'Kbuild' can 127 These lines define the files to be built, any special compilation 150 The kbuild Makefile specifies object files for vmlinux 154 Kbuild compiles all the $(obj-y) files. It then calls 155 "$(LD) -r" to merge these files into one built-in.o file. [all …]
|
D | headers_install.txt | 4 The "make headers_install" command exports the kernel's header files in a 7 The linux kernel's exported header files describe the API for user space 8 programs attempting to use kernel services. These kernel header files are 11 system calls. The C library's header files include the kernel header files
|
D | modules.txt | 54 that contains the configuration and header files used in the build. 112 output files will also be generated in this directory. No 128 Remove all generated files in the module directory only. 135 It is possible to build single files that are part of a module. 152 files. The file may be as simple as a single line: 160 needed listing the files: 168 module 8123.ko, which is built from the following files: 217 to split up the makefile from example 1 into two files: 267 split into separate files. 285 files and the binary file, kbuild will pick up different rules [all …]
|
D | kbuild.txt | 1 Output files 21 building C files and assembler files. 172 $(objtree) is the directory where output files are saved. 228 All object files for the init (first) part of vmlinux. 233 All object files for the main part of vmlinux. 235 all the object files used to link vmlinux.
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | cachefiles.txt | 74 - bmap() support on files in the filesystem (FIBMAP ioctl). 166 Do not create, rename or unlink files and directories in the cache whilst the 169 Renaming files in the cache might make objects appear to be other objects (the 172 Do not change or remove the extended attributes attached to cache files by the 175 Do not create files or directories in the cache, lest the cache get confused or 178 Do not chmod files in the cache. The module creates things with minimal 192 percentage of files available in the underlying filesystem. There are six 198 If the amount of free space and the number of available files in the cache 204 If the amount of available space or the number of available files in the 210 If the amount of available space or the number of available files in the [all …]
|
/linux-4.1.27/fs/hpfs/ |
D | Kconfig | 6 is the file system used for organizing files on OS/2 hard disk 7 partitions. Say Y if you want to be able to read files from and 8 write files to an OS/2 HPFS partition on your hard drive. OS/2
|
/linux-4.1.27/tools/testing/ktest/examples/ |
D | README | 14 http://kernel.org/pub/tools/crosstool/files/bin/x86_64/ 27 to reuse configs for various machines or set ups. The files here 28 are included by other config files, where the other config files define
|
/linux-4.1.27/Documentation/dvb/ |
D | get_dvb_firmware | 381 my %files = ( 390 foreach my $fwfile (keys %files) { 392 verify($fwfile, $files{$fwfile}); 455 my %files = ( 463 foreach my $fwfile (keys %files) { 465 verify($fwfile, $files{$fwfile}); 477 my %files = ( 484 foreach my $fwfile (keys %files) { 486 verify($fwfile, $files{$fwfile}); 768 my %files = ( [all …]
|
D | opera-firmware.txt | 2 you need to copy the files: 13 and after that you have 2 files:
|
D | ttusb-dec.txt | 36 Copy the three files downloaded above into the build-2.4 directory. 44 Copy the three files downloaded above into the /usr/lib/hotplug/firmware or
|
/linux-4.1.27/Documentation/sysctl/ |
D | sunrpc.txt | 8 This file contains the documentation for the sysctl files in 11 The files in this directory can be used to (re)set the debug 16 The files in there are used to control the debugging flags:
|
D | fs.txt | 9 This file contains documentation for the sysctl files in 12 The files in this directory can be used to tune and monitor 14 kernel. Since some of the files _can_ be used to screw up your 21 Currently, these files are in /proc/sys/fs: 170 from "pinning" vulnerable setuid/setgid files against being upgraded by 171 the administrator, or linking to special files. 249 Documentation for the files in /proc/sys/fs/binfmt_misc is 292 Every epoll file descriptor can store a number of files to be monitored 293 for event readiness. Each one of these monitored files constitutes a "watch".
|
D | 00-INDEX | 4 - general information about /proc/sys/ sysctl files.
|
/linux-4.1.27/kernel/ |
D | kcmp.c | 64 if (task->files) in get_file_raw_ptr() 65 file = fcheck_files(task->files, idx); in get_file_raw_ptr() 148 ret = kcmp_ptr(task1->files, task2->files, KCMP_FILES); in SYSCALL_DEFINE5()
|
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-diff.txt | 6 perf-diff - Read perf.data files and display the differential profile 16 files captured via perf record. 21 specified perf.data files. 24 As the perf.data files could come from different binaries, the symbols addresses 25 could vary. So perf diff is based on the comparison of the files and 81 Look for files with symbols relative to this directory. 115 file is iterated for samples. All other perf.data files specified on 119 All samples from non-baseline perf.data files, that do not match any 123 Example files samples:
|
D | perf-archive.txt | 6 perf-archive - Create archive with object files with build-ids found in perf.data file 15 This command runs perf-buildid-list --with-hits, and collects the files with the
|
D | perf-buildid-cache.txt | 16 files to/from the cache. In the future it should as well set upper limits for 31 image. Note also that files "kallsyms" and "modules" must also be in the 32 same directory and are also copied. All 3 files are created with read
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-ibft | 5 files that expose the iSCSI Boot Firmware Table initiator data. 12 files that expose the iSCSI Boot Firmware Table target data. 22 files that expose the iSCSI Boot Firmware Table NIC data.
|
D | ima_policy | 7 values of executables and other sensitive system files 82 all files mmapped executable in file_mmap, and all files 84 policy appraises all files owned by root.
|
D | sysfs-kernel-boot_params | 5 files: "data" and "version" and one subdirectory "setup_data". 22 files "type" and "data". "type" file is the string
|
D | sysfs-wusb_cbaf | 6 Various files for managing Cable Based Association of 14 (the wusb_chid etc. files in /sys/devices/blah/OURDEVICE). 18 wusb_host_band_groups and wusb_chid files. These
|
D | sysfs-devices-system-cpu | 19 Description: CPU topology files that describe kernel limits related to 78 Description: CPU topology files that describe a logical CPU's relationship 84 Briefly, the files above are: 126 See files in Documentation/cpuidle/ for more information. 141 See files in Documentation/cpu-freq/ for more information. 168 These files exist in every CPU's cache/index3 directory. Each 170 can be used to disable a cache index. Reading from these files 174 index to one of these files will cause the specificed cache
|
D | pstore | 32 The expectation is that all files in /sys/fs/pstore/ 39 multiple) files based on the record size of the underlying
|
D | debugfs-pktcdvd | 11 these files in debugfs:
|
/linux-4.1.27/fs/nfsd/ |
D | Kconfig | 12 files residing on this system using Sun's Network File System 53 manipulate POSIX Access Control Lists on files residing on NFS 54 servers. NFS servers enforce POSIX ACLs on local files whether 59 POSIX ACLs on files exported by your system's NFS server. NFS 80 To export files using NFSv4, you need to install additional user 103 SELinux and Smack to label files to facilitate enforcement of their policies. 107 Smack policies on NFSv4 files, say N.
|
/linux-4.1.27/Documentation/hwmon/ |
D | lm93 | 73 sysfs files prochot1, prochot2, prochot1_avg, prochot2_avg, prochot1_max, 83 These intervals can be found in the sysfs files prochot1_interval and 84 prochot2_interval. The values in these files specify the intervals for 101 The sysfs files prochot1_override and prochot2_override contain boolean 111 sysfs files vrdhot1 and vrdhot2. There is one value per file: a boolean for 113 files are read-only. 134 15.10.6 of the datasheet for details.) The sysfs files pwm1_override 136 where 0 disables and 1 enables the manual control mode. The sysfs files pwm1 147 The sysfs files pwm1_freq and pwm2_freq are used to select the frequency. The 163 in the sysfs files pwm<n>_auto_channels, where a "1" enables the binding, and [all …]
|
D | adt7410 | 9 http://www.analog.com/static/imported-files/data_sheets/ADT7410.pdf 14 http://www.analog.com/static/imported-files/data_sheets/ADT7420.pdf 19 http://www.analog.com/static/imported-files/data_sheets/ADT7310.pdf 24 http://www.analog.com/static/imported-files/data_sheets/ADT7320.pdf
|
D | adm1275 | 8 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1075.pdf 12 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1275.pdf 16 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1276.pdf
|
D | pcf8591 | 73 Inside these directories, there are such files: 78 The in0_input, in1_input, in2_input and in3_input files are RO. Reading gives 80 configuration, files in2_input and in3_input may not exist. Values range
|
D | w83791d | 12 This driver was derived from the w83781d.c and w83792d.c source files. 94 *_beep files as described in .../Documentation/hwmon/sysfs-interface. 98 of triggered alarms. The newer method uses multiple sysfs *_alarm files 114 /sys files 137 For legacy code using the alarms and beep_mask files:
|
D | smsc47m192 | 37 Both voltage and temperature values are scaled by 1000, the sys files 71 These files read '1' in case of alarm, '0' otherwise. 102 The *_min, *_max, *_offset and vrm files can be read and
|
/linux-4.1.27/kernel/gcov/ |
D | Kconfig | 15 for the entire kernel. To enable profiling for specific files or 22 For all files in one directory: 25 To exclude files from being profiled even when CONFIG_GCOV_PROFILE_ALL 49 larger and run slower. Also be sure to exclude files from profiling
|
/linux-4.1.27/arch/unicore32/ |
D | .gitignore | 2 # Generated include files 16 # Generated files in boot/compressed
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | intel-pstate.txt | 24 controlling frequency the driver provides sysfs files for 25 controlling P state selection. These files have been added to 55 For legacy mode debugfs files have also been added to allow tuning of 56 the internal governor algorythm. These files are located at 57 /sys/kernel/debug/pstate_snb/ These files are NOT present in HWP mode.
|
/linux-4.1.27/drivers/net/wireless/rsi/ |
D | rsi_91x_debugfs.c | 289 const struct rsi_dbg_files *files; in rsi_init_dbgfs() local 308 files = &dev_debugfs_files[ii]; in rsi_init_dbgfs() 310 debugfs_create_file(files->name, in rsi_init_dbgfs() 311 files->perms, in rsi_init_dbgfs() 314 &files->fops); in rsi_init_dbgfs()
|
/linux-4.1.27/Documentation/arm/Atmel/ |
D | README | 13 official Atmel product name. Anyway, files, directories, git trees, 106 Device Tree files and Device Tree bindings that apply to AT91 SoCs and boards are 115 - SoCs Device Tree Source Include files are named after the official name of 117 - Device Tree Source Include files (.dtsi) are used to collect common nodes that can be 122 - board Device Tree Source files (.dts) are prefixed by the string "at91-" so 123 that they can be identified easily. Note that some files are historical exceptions
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-driver-usb-usbtmc | 6 These files show the various USB TMC capabilities as described 12 The files are read only. 20 These files show the various USB TMC capabilities as described 27 The files are read only.
|
D | sysfs-firmware-opal-dump | 19 and ID of the dump, use the id and type files. 23 Each dump has the following files:
|
/linux-4.1.27/Documentation/w1/masters/ |
D | mxc-w1 | 7 http://www.freescale.com/files/32bit/doc/data_sheet/MCIMX31.pdf?fpsp=1 8 http://cache.freescale.com/files/dsp/doc/archive/MCIMX27.pdf?fsrch=1&WT_TYPE=
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Procfile.txt | 10 check the files listed in the following sections. 13 card-specific files are stored in the card* subdirectories. 59 The card-specific files are found in /proc/asound/card* directories. 62 dump). These files would be really helpful for debugging. 67 the last 'p' or 'c' means playback or capture direction. The files in 70 The status of MIDI I/O is found in midi* files. It shows the device 224 - AC97 proc files, codec97#*/* files 229 - stream* files in card directory
|
D | MIXART.txt | 41 Mono files will be played on the left and right channel. Each channel 91 files. 93 The firmware files are copyright by Digigram SA
|
/linux-4.1.27/Documentation/networking/ |
D | dl2k.txt | 67 The 3 files necessary to build Linux device driver are dl2k.c, dl2k.h and 70 Kernels 2.4.7. Copy the files to a directory and enter the following command 261 Q1. Source files contain ^ M behind every line. 262 Make sure all files are Unix file format (no LF). Try the following 263 shell command to convert files. 273 Q2: Could not find header files (*.h) ? 274 To compile the driver, you need kernel header files. After 275 installing the kernel source, the header files are usually located in 277 in Makefile. For some distributions, there is a copy of header files in 280 Note that RH 7.0 didn't provide correct header files in /usr/include, [all …]
|
/linux-4.1.27/Documentation/early-userspace/ |
D | README | 40 a way to create images with root-owned files even though the image was 44 CONFIG_INITRAMFS_SOURCE. Sources can be either directories or files - 59 When a combination of directories and files are specified then the 61 can create a 'root-image' directory and install all files into it. 62 Because device-special files cannot be created by a unprivileged user, 63 special files can be listed in a 'root-files' file. Both 'root-image' 64 and 'root-files' can be listed in CONFIG_INITRAMFS_SOURCE and a complete 67 As a technical note, when directories and files are specified, the
|
/linux-4.1.27/net/sunrpc/ |
D | rpc_pipe.c | 667 const struct rpc_filelist *files, in __rpc_depopulate() argument 676 name.name = files[i].name; in __rpc_depopulate() 677 name.len = strlen(files[i].name); in __rpc_depopulate() 699 const struct rpc_filelist *files, in rpc_depopulate() argument 705 __rpc_depopulate(parent, files, start, eof); in rpc_depopulate() 710 const struct rpc_filelist *files, in rpc_populate() argument 720 dentry = __rpc_lookup_create_exclusive(parent, files[i].name); in rpc_populate() 724 switch (files[i].mode & S_IFMT) { in rpc_populate() 729 files[i].mode, in rpc_populate() 730 files[i].i_fop, in rpc_populate() [all …]
|
/linux-4.1.27/tools/perf/ |
D | CREDITS | 6 Here is an (incomplete!) list of main contributors to those files 30 The full history of the files can be found in the upstream Git commits.
|
/linux-4.1.27/fs/fat/ |
D | Kconfig | 9 files on them, i.e. MSDOS files will look and behave just like all 10 other Unix files. 22 If you need to move large files on floppies between a DOS and a 47 transparent, i.e. the MSDOS files look and behave just like all 48 other Unix files.
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | debugfs.c | 751 const struct lbs_debugfs_files *files; in lbs_debugfs_init_one() local 760 files = &debugfs_files[i]; in lbs_debugfs_init_one() 761 priv->debugfs_files[i] = debugfs_create_file(files->name, in lbs_debugfs_init_one() 762 files->perm, in lbs_debugfs_init_one() 765 &files->fops); in lbs_debugfs_init_one() 773 files = &debugfs_events_files[i]; in lbs_debugfs_init_one() 774 priv->debugfs_events_files[i] = debugfs_create_file(files->name, in lbs_debugfs_init_one() 775 files->perm, in lbs_debugfs_init_one() 778 &files->fops); in lbs_debugfs_init_one() 786 files = &debugfs_regs_files[i]; in lbs_debugfs_init_one() [all …]
|
/linux-4.1.27/Documentation/mn10300/ |
D | compartmentalisation.txt | 12 Processor-specific header files are divided among directories in a similar 28 Unit-specific header files are divided among directories in a similar way 56 So that the header files contained in those directories can be accessed without
|
/linux-4.1.27/Documentation/devicetree/bindings/crypto/ |
D | atmel-crypto.txt | 12 atmel-dma.txt and dma.txt files. 34 atmel-dma.txt and dma.txt files. 57 atmel-dma.txt and dma.txt files.
|
/linux-4.1.27/Documentation/arm/SPEAr/ |
D | overview.txt | 45 The common files for multiple machine families (SPEAr3xx, SPEAr6xx and 55 files, like spear1310.c, spear1340.c spear300.c, spear310.c, spear320.c and 56 spear600.c. mach-spear* doesn't contains board specific files as they fully
|
/linux-4.1.27/fs/notify/fanotify/ |
D | Kconfig | 22 listeners which need to scan files before allowing the system access to 23 use those files. This is used by some anti-malware vendors and by some
|
/linux-4.1.27/usr/ |
D | Kconfig | 10 space-separated list of directories and files for building the 17 When multiple directories and files are specified then the 31 other than "0" will cause all files owned by that UID to be 43 other than "0" will cause all files owned by that GID to be
|
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/Documentation/video4linux/ |
D | cx18.txt | 26 You can obtain the firmware files here: 30 Untar and copy the .fw files to your firmware directory.
|
/linux-4.1.27/arch/powerpc/platforms/cell/spufs/ |
D | inode.c | 200 const struct spufs_tree_descr *files, umode_t mode, in spufs_fill_dir() argument 203 while (files->name && files->name[0]) { in spufs_fill_dir() 205 struct dentry *dentry = d_alloc_name(dir, files->name); in spufs_fill_dir() 208 ret = spufs_new_file(dir->d_sb, dentry, files->ops, in spufs_fill_dir() 209 files->mode & mode, files->size, ctx); in spufs_fill_dir() 212 files++; in spufs_fill_dir()
|
/linux-4.1.27/Documentation/arm/ |
D | README | 56 Include files 63 arch-* machine/platform specific header files 66 proc-* processor dependent header files (currently only two 76 used to select which directories and files get included (we will use 80 designed to house the non-driver files for a particular machine (eg, PCI, 99 ADFS Image files 102 You can access image files on your ADFS partitions by mounting the ADFS 179 arch/arm/mach-<class> - which contain the source files to/include/mach
|
/linux-4.1.27/Documentation/RCU/ |
D | lockdep.txt | 79 lockdep_is_held(&files->file_lock) || 80 atomic_read(&files->count) == 1); 87 2. with files->file_lock held, or 98 lockdep_is_held(&files->file_lock) || 99 atomic_read(&files->count) == 1);
|
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/ |
D | Makefile | 14 clean-files:= ${GENSRCS} ${GENHDRS} $(YSRCS:.y=.output) $(PROG) 56 rm -f $(clean-files)
|
/linux-4.1.27/fs/bfs/ |
D | Kconfig | 7 files during the boot process. It is usually mounted under /stand 9 partition. You should say Y if you want to read or write the files
|
/linux-4.1.27/security/apparmor/include/ |
D | apparmorfs.h | 37 struct aa_fs_entry *files; member 60 { .name = (_name), .v_type = AA_FS_TYPE_DIR, .v.files = (_value) }
|
/linux-4.1.27/fs/befs/ |
D | Kconfig | 8 on files and directories, and database-like indices on selected 11 extremely large volumes and files.
|
/linux-4.1.27/fs/affs/ |
D | Kconfig | 7 if you want to be able to read and write files from and to an Amiga 14 With this driver you can also mount disk files used by Bernd
|
/linux-4.1.27/Documentation/laptops/ |
D | sony-laptop.txt | 27 If your laptop model supports it, you will find sysfs files in the 42 directory populated with some files. 44 You then read/write integer values from/to those files by using 47 The files are: 57 Note that some files may be missing if they are not supported 122 files and find out what is the impact on your laptop.
|
/linux-4.1.27/arch/cris/boot/compressed/ |
D | README | 7 by that makefile into text and data binary files, vmlinux.text and 10 Those files together with a ROM filesystem can be catted together and
|
/linux-4.1.27/tools/build/Documentation/ |
D | Build.txt | 7 Basically the user provides set of 'Build' files that list objects and 64 To follow the above example, the user provides following 'Build' files: 88 that contain request objects names in Build files. 128 All existing '.cmd' files are included in the Build process to follow properly
|
/linux-4.1.27/block/ |
D | Kconfig | 15 - block device files will become unusable 27 bool "Support for large (2TB+) block devices and files" 31 Enable block devices or files of size 2TB and larger. 37 This option also enables support for single files larger than
|
/linux-4.1.27/fs/reiserfs/ |
D | README | 6 Source code files that contain the phrase "licensing governed by 7 reiserfs/README" are "governed files" throughout this file. Governed 8 files are licensed under the GPL. The portions of them owned by Hans 11 other licenses. If you add your code to governed files, and don't 14 All portions of governed files not labeled otherwise are owned by Hans 100 space problem with packing tails of files for files larger than a node 102 align files), and he invented and implemented indirect items and
|
D | Kconfig | 5 Stores not just filenames but the files themselves in a balanced 12 large directories and small files. Additional patches are needed 48 Create under /proc/fs/reiserfs a hierarchy of files, displaying
|
/linux-4.1.27/Documentation/frv/ |
D | clock.txt | 6 extra files will appear in the directory /proc/sys/pm/. Reading these files 56 The PM-Controls line, if present, will indicate which /proc/sys/pm files can
|
/linux-4.1.27/fs/cachefiles/ |
D | Kconfig | 3 tristate "Filesystem caching on files" 18 caching on files module. If this is set, the debugging output may be
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/Documentation/usb/ |
D | mass-storage.txt | 34 This parameter lists paths to files or block devices used for 36 FSG_MAX_LUNS (8) LUNs set. If more files are specified, they will 90 backing files. 123 If this parameter is provided, and the number of files specified 125 files will be ignored. 128 be deduced from the number of files specified in the “file” 152 hierarchy. Inside of it the following three files are created: 178 read from /sys/module/g_mass_storage/parameters/* files.
|
/linux-4.1.27/sound/oss/ |
D | .gitignore | 1 #Ignore generated files
|
/linux-4.1.27/security/apparmor/ |
D | .gitignore | 2 # Generated include files
|
/linux-4.1.27/lib/ |
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/Documentation/power/ |
D | 00-INDEX | 35 swsusp-and-swap-files.txt 36 - Using swap files with software suspend (to disk)
|
D | swsusp-and-swap-files.txt | 1 Using swap files with software suspend (swsusp) 4 The Linux kernel handles swap files almost in the same way as it handles swap 7 (1) swap files need not be contiguous,
|
/linux-4.1.27/tools/perf/util/ |
D | dwarf-aux.c | 34 Dwarf_Files *files; in cu_find_realpath() local 42 ret = dwarf_getsrcfiles(cu_die, &files, &nfiles); in cu_find_realpath() 47 src = dwarf_filesrc(files, i, NULL, NULL); in cu_find_realpath() 361 Dwarf_Files *files; in die_get_call_file() local 366 dwarf_getsrcfiles(&cu_die, &files, NULL) != 0) in die_get_call_file() 369 return dwarf_filesrc(files, idx, NULL, NULL); in die_get_call_file()
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | TEST.DOC | 32 The files itest.sa and ftest.sa contain simple tests to check 37 The release files itest.sa and ftest.sa are essentially 41 binary output images into ASCII text files. The hexadecimal 43 directive "dc.l" (define constant longword). The files can be 48 the installer should add symbolic labels to the top of the files. 88 to access the test routines. Since the {i,f}test.sa hex files contain
|
/linux-4.1.27/drivers/video/logo/ |
D | .gitignore | 2 # Generated files
|
/linux-4.1.27/drivers/atm/ |
D | .gitignore | 1 # Ignore generated files
|
/linux-4.1.27/arch/arm64/boot/dts/mediatek/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/arm64/boot/dts/amd/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/arm64/boot/dts/exynos/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/arm64/boot/dts/sprd/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/arm64/boot/dts/apm/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/scripts/selinux/mdp/ |
D | Makefile | 5 clean-files := policy.* file_contexts
|
/linux-4.1.27/arch/arm64/boot/dts/cavium/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/arm64/boot/dts/xilinx/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/arm64/boot/dts/freescale/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/fs/cramfs/ |
D | inode.c | 37 unsigned long files; member 320 sbi->files = super.fsid.files; in cramfs_fill_super() 324 sbi->files = 0; in cramfs_fill_super() 359 buf->f_files = CRAMFS_SB(sb)->files; in cramfs_statfs()
|
/linux-4.1.27/arch/openrisc/boot/dts/ |
D | Makefile | 8 clean-files := *.dtb.S
|
/linux-4.1.27/fs/quota/ |
D | quota_v1.c | 60 if (!sb_dqopt(dquot->dq_sb)->files[type]) in v1_read_dqblk() 95 if (sb_dqopt(dquot->dq_sb)->files[type]) in v1_commit_dqblk() 127 struct inode *inode = sb_dqopt(sb)->files[type]; in v1_check_quota_file()
|
/linux-4.1.27/arch/cris/boot/dts/ |
D | Makefile | 6 clean-files := *.dtb.S
|
/linux-4.1.27/arch/arm64/boot/dts/qcom/ |
D | Makefile | 5 clean-files := *.dtb
|
/linux-4.1.27/arch/xtensa/boot/dts/ |
D | Makefile | 15 clean-files := *.dtb.S
|
/linux-4.1.27/arch/score/boot/ |
D | Makefile | 15 clean-files += vmlinux.bin
|
/linux-4.1.27/security/ |
D | inode.c | 35 static struct tree_descr files[] = {{""}}; in fill_super() local 37 return simple_fill_super(sb, SECURITYFS_MAGIC, files); in fill_super()
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | Makefile | 42 clean-files := aic7xxx_seq.h aic7xxx_reg.h aic7xxx_reg_print.c 43 clean-files += aic79xx_seq.h aic79xx_reg.h aic79xx_reg_print.c
|
/linux-4.1.27/arch/mips/boot/dts/lantiq/ |
D | Makefile | 9 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/arch/mips/boot/dts/mti/ |
D | Makefile | 9 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/arch/arm64/boot/dts/arm/ |
D | Makefile | 7 clean-files := *.dtb
|
/linux-4.1.27/arch/mips/boot/dts/cavium-octeon/ |
D | Makefile | 9 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/arch/mips/boot/dts/ |
D | Makefile | 12 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | rockchip,rk3288-cru.txt | 17 - rockchip,grf: phandle to the syscon managing the "general register files" 24 these files.
|
D | rockchip,rk3188-cru.txt | 18 - rockchip,grf: phandle to the syscon managing the "general register files" 25 Similar macros exist for the reset sources in these files.
|
/linux-4.1.27/Documentation/cgroups/ |
D | hugetlb.txt | 28 Brief summary of control files 36 files include:
|
/linux-4.1.27/Documentation/wimax/ |
D | README.wimax | 39 files will appear in /sys/kernel/debug/wimax:wmxX can tweak for 56 The files named *dl_* indicate knobs for controlling the debug output 66 /sys/kernel/debug/wimax:wmx0/.... # other driver specific files
|
/linux-4.1.27/fs/nfs/ |
D | Kconfig | 8 Choose Y here if you want to access files residing on other 60 Lists on files residing on NFS servers. NFS servers enforce 61 ACLs on local files whether this protocol is available or not. 65 applications to access and modify ACLs on files on the server. 95 This option enables swapon to work on files located on NFS mounts.
|
/linux-4.1.27/scripts/gdb/linux/ |
D | Makefile | 11 clean-files := *.pyc *.pyo $(if $(KBUILD_SRC),*.py)
|
D | symbols.py | 79 for root, dirs, files in os.walk(path): 80 for name in files:
|
/linux-4.1.27/arch/c6x/boot/dts/ |
D | Makefile | 20 clean-files := *.dtb
|
/linux-4.1.27/fs/ocfs2/ |
D | quota_local.c | 170 struct inode *linode = sb_dqopt(sb)->files[type]; in ocfs2_local_check_quota_file() 689 struct inode *lqinode = sb_dqopt(sb)->files[type]; in ocfs2_local_read_info() 802 status = ocfs2_modify_bh(sb_dqopt(sb)->files[type], bh, olq_update_info, in ocfs2_local_write_info() 855 status = ocfs2_modify_bh(sb_dqopt(sb)->files[type], in ocfs2_local_free_info() 865 ocfs2_inode_unlock(sb_dqopt(sb)->files[type], 1); in ocfs2_local_free_info() 901 struct inode *lqinode = sb_dqopt(sb)->files[dquot->dq_id.type]; in ocfs2_local_write_dquot() 970 struct inode *lqinode = sb_dqopt(sb)->files[type]; in ocfs2_local_quota_add_chunk() 1102 struct inode *lqinode = sb_dqopt(sb)->files[type]; in ocfs2_extend_local_quota_file() 1223 struct inode *lqinode = sb_dqopt(sb)->files[type]; in ocfs2_create_local_dquot() 1283 INODE_CACHE(sb_dqopt(sb)->files[type]), in ocfs2_local_release_dquot()
|
/linux-4.1.27/arch/arc/boot/dts/ |
D | Makefile | 15 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/drivers/staging/skein/ |
D | TODO | 3 - move macros into appropriate header files
|
/linux-4.1.27/arch/mips/boot/dts/ralink/ |
D | Makefile | 12 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/Documentation/driver-model/ |
D | overview.txt | 108 The global layer currently creates two files - 'name' and 'power'. The 113 The bus layer may also create files for the devices it finds while probing the 114 bus. For example, the PCI layer currently creates 'irq' and 'resource' files 117 A device-specific driver may also export files in its directory to expose
|
/linux-4.1.27/arch/mips/boot/dts/netlogic/ |
D | Makefile | 13 clean-files := *.dtb *.dtb.S
|
/linux-4.1.27/fs/ntfs/ |
D | Kconfig | 57 The only supported operation is overwriting existing files, without 59 renaming is possible. Note only non-resident files can be written to 60 so you may find that some very small files (<500 bytes or so) cannot
|
/linux-4.1.27/drivers/base/ |
D | Kconfig | 96 converting ihex files to binary, copies all of the needed 97 binary files in firmware/ to /lib/firmware/ on your system so 124 firmware files -- the same names that appear in MODULE_FIRMWARE() 125 and request_firmware() in the source. These files should exist under 134 WARNING: If you include additional firmware files into your binary 146 looks for the firmware files listed in the EXTRA_FIRMWARE option. 149 some other directory containing the firmware files. 160 (e.g. udev) for loading firmware files as a fallback after the
|
/linux-4.1.27/arch/arm/boot/compressed/ |
D | .gitignore | 14 # borrowed libfdt files
|
/linux-4.1.27/fs/ufs/ |
D | Kconfig | 17 good portable way to transport files and directories between unixes 21 When accessing NeXTstep files, you may need to convert them from the
|
/linux-4.1.27/fs/sysv/ |
D | Kconfig | 20 If you only intend to mount files from some other Unix over the 25 good portable way to transport files and directories between unixes
|
/linux-4.1.27/drivers/eisa/ |
D | Makefile | 19 clean-files := devlist.h
|
/linux-4.1.27/arch/metag/boot/dts/ |
D | Makefile | 22 clean-files += *.dtb *.dtb.S
|
/linux-4.1.27/scripts/genksyms/ |
D | Makefile | 14 clean-files := keywords.hash.c lex.lex.c parse.tab.c parse.tab.h
|
/linux-4.1.27/fs/ext3/ |
D | Kconfig | 7 (method to organize files on a storage device) for hard disks. 23 tune2fs"). To modify attributes of files and directories on ext3 39 unwritten data to appear in files after an system crash or
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | README | 30 mkdir linux/fs/cifs and then copy the current cifs vfs files from 63 similar files reside (usually /sbin). Although the helper software is not 164 newly created files can end up with an unnecessarily restrictive default mode, 174 open files (required for strict POSIX compliance). Windows Servers already 175 supported this feature. Samba server does not allow symlinks that refer to files 177 files with absolute paths (ie beginning with slash) such as: 181 files that are outside of the share) to a samba specific format on the server 224 of the mount options. Credential files contain two lines 278 of existing files will be the uid (gid) of the person 299 not used to fill in the owner fields of inodes (files) [all …]
|
/linux-4.1.27/drivers/zorro/ |
D | Makefile | 12 clean-files := devlist.h
|
/linux-4.1.27/arch/xtensa/boot/lib/ |
D | Makefile | 24 clean-files := $(zlib)
|
/linux-4.1.27/kernel/debug/kdb/ |
D | Makefile | 13 clean-files := gen-kdb_cmds.c
|
/linux-4.1.27/Documentation/fb/ |
D | viafb.txt | 203 The following files exist in /proc/viafb 218 These two files are readable and writable. iga1 and iga2 are the two 220 forwarded to one or more output devices. Reading those files is a way 226 Writing to these files allows adjusting the output devices during 230 files. You can add a '+' or '-' as a prefix allowing simple addition
|
/linux-4.1.27/drivers/usb/serial/ |
D | Makefile-keyspan_pda_fw | 3 # insisting upon fixed suffixes for the input and output files,
|