/linux-4.4.14/arch/openrisc/lib/ |
H A D | Makefile | 2 # Makefile for or32 specific library files..
|
/linux-4.4.14/arch/cris/arch-v10/lib/ |
H A D | Makefile | 2 # Makefile for Etrax-specific library files..
|
/linux-4.4.14/arch/cris/arch-v32/lib/ |
H A D | Makefile | 2 # Makefile for Etrax-specific library files..
|
/linux-4.4.14/arch/cris/boot/dts/ |
H A D | Makefile | 6 clean-files := *.dtb.S
|
/linux-4.4.14/scripts/selinux/mdp/ |
H A D | Makefile | 5 clean-files := policy.* file_contexts
|
/linux-4.4.14/arch/openrisc/boot/dts/ |
H A D | Makefile | 8 clean-files := *.dtb.S
|
/linux-4.4.14/arch/hexagon/lib/ |
H A D | Makefile | 2 # Makefile for hexagon-specific library files.
|
/linux-4.4.14/arch/m32r/lib/ |
H A D | Makefile | 2 # Makefile for M32R-specific library files..
|
/linux-4.4.14/arch/arm64/boot/dts/altera/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/amd/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/broadcom/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/cavium/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/exynos/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/hisilicon/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/qcom/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/rockchip/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/sprd/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/xilinx/ |
H A D | Makefile | 5 clean-files := *.dtb
|
/linux-4.4.14/arch/alpha/include/asm/ |
H A D | segment.h | 4 /* Only here because we have some old header files that expect it.. */
|
/linux-4.4.14/arch/parisc/lib/ |
H A D | Makefile | 2 # Makefile for parisc-specific library files
|
/linux-4.4.14/arch/h8300/lib/ |
H A D | Makefile | 2 # Makefile for H8/300-specific library files..
|
/linux-4.4.14/arch/ia64/include/asm/ |
H A D | segment.h | 4 /* Only here because we have some old header files that expect it.. */
|
/linux-4.4.14/arch/arm64/boot/dts/apm/ |
H A D | Makefile | 6 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/marvell/ |
H A D | Makefile | 6 clean-files := *.dtb
|
/linux-4.4.14/arch/arm64/boot/dts/mediatek/ |
H A D | Makefile | 6 clean-files := *.dtb
|
/linux-4.4.14/fs/ |
H A D | file.c | 64 * space if any. This does not copy the file pointers. Called with the files 87 * clear the extra space. Called with the files spinlock held for write. 163 * The files->file_lock should be held on entry, and will be held on exit. 165 static int expand_fdtable(struct files_struct *files, int nr) 166 __releases(files->file_lock) 167 __acquires(files->file_lock) 171 spin_unlock(&files->file_lock); 177 if (atomic_read(&files->count) > 1) 180 spin_lock(&files->file_lock); 191 cur_fdt = files_fdtable(files); 194 rcu_assign_pointer(files->fdt, new_fdt); 195 if (cur_fdt != &files->fdtab) 203 * Expand files. 206 * Return <0 error code on error; 0 when nothing done; 1 when files were 208 * The files->file_lock should be held on entry, and will be held on exit. 210 static int expand_files(struct files_struct *files, int nr) 211 __releases(files->file_lock) 212 __acquires(files->file_lock) 218 fdt = files_fdtable(files); 228 if (unlikely(files->resize_in_progress)) { 229 spin_unlock(&files->file_lock); 231 wait_event(files->resize_wait, !files->resize_in_progress); 232 spin_lock(&files->file_lock); 237 files->resize_in_progress = true; 238 expanded = expand_fdtable(files, nr); 239 files->resize_in_progress = false; 241 wake_up_all(&files->resize_wait); 285 * Allocate a new files structure and copy contents from the 286 * passed in files structure. 362 * instantiated in the files array if a sibling thread dup_fd() 385 static struct fdtable *close_files(struct files_struct * files) close_files() argument 390 * files structure. close_files() 392 struct fdtable *fdt = rcu_dereference_raw(files->fdt); close_files() 405 filp_close(file, files); close_files() 419 struct files_struct *files; get_files_struct() local 422 files = task->files; get_files_struct() 423 if (files) get_files_struct() 424 atomic_inc(&files->count); get_files_struct() 427 return files; get_files_struct() 430 void put_files_struct(struct files_struct *files) put_files_struct() argument 432 if (atomic_dec_and_test(&files->count)) { put_files_struct() 433 struct fdtable *fdt = close_files(files); put_files_struct() 436 if (fdt != &files->fdtab) put_files_struct() 438 kmem_cache_free(files_cachep, files); put_files_struct() 442 void reset_files_struct(struct files_struct *files) reset_files_struct() argument 447 old = tsk->files; reset_files_struct() 449 tsk->files = files; reset_files_struct() 456 struct files_struct * files = tsk->files; exit_files() local 458 if (files) { exit_files() 460 tsk->files = NULL; exit_files() 462 put_files_struct(files); exit_files() 496 int __alloc_fd(struct files_struct *files, __alloc_fd() argument 503 spin_lock(&files->file_lock); __alloc_fd() 505 fdt = files_fdtable(files); __alloc_fd() 507 if (fd < files->next_fd) __alloc_fd() 508 fd = files->next_fd; __alloc_fd() 514 * N.B. For clone tasks sharing a files structure, this test __alloc_fd() 515 * will limit the total number of files that can be opened. __alloc_fd() 521 error = expand_files(files, fd); __alloc_fd() 532 if (start <= files->next_fd) __alloc_fd() 533 files->next_fd = fd + 1; __alloc_fd() 550 spin_unlock(&files->file_lock); __alloc_fd() 556 return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags); alloc_fd() 561 return __alloc_fd(current->files, 0, rlimit(RLIMIT_NOFILE), flags); get_unused_fd_flags() 565 static void __put_unused_fd(struct files_struct *files, unsigned int fd) __put_unused_fd() argument 567 struct fdtable *fdt = files_fdtable(files); __put_unused_fd() 569 if (fd < files->next_fd) __put_unused_fd() 570 files->next_fd = fd; __put_unused_fd() 575 struct files_struct *files = current->files; put_unused_fd() local 576 spin_lock(&files->file_lock); put_unused_fd() 577 __put_unused_fd(files, fd); put_unused_fd() 578 spin_unlock(&files->file_lock); put_unused_fd() 586 * The VFS is full of places where we drop the files lock between 597 * your throat. 'files' *MUST* be either current->files or obtained 603 void __fd_install(struct files_struct *files, unsigned int fd, __fd_install() argument 611 while (unlikely(files->resize_in_progress)) { __fd_install() 613 wait_event(files->resize_wait, !files->resize_in_progress); __fd_install() 618 fdt = rcu_dereference_sched(files->fdt); __fd_install() 626 __fd_install(current->files, fd, file); fd_install() 634 int __close_fd(struct files_struct *files, unsigned fd) __close_fd() argument 639 spin_lock(&files->file_lock); __close_fd() 640 fdt = files_fdtable(files); __close_fd() 648 __put_unused_fd(files, fd); __close_fd() 649 spin_unlock(&files->file_lock); __close_fd() 650 return filp_close(file, files); __close_fd() 653 spin_unlock(&files->file_lock); __close_fd() 657 void do_close_on_exec(struct files_struct *files) do_close_on_exec() argument 663 spin_lock(&files->file_lock); do_close_on_exec() 667 fdt = files_fdtable(files); do_close_on_exec() 682 __put_unused_fd(files, fd); do_close_on_exec() 683 spin_unlock(&files->file_lock); do_close_on_exec() 684 filp_close(file, files); do_close_on_exec() 686 spin_lock(&files->file_lock); do_close_on_exec() 690 spin_unlock(&files->file_lock); do_close_on_exec() 695 struct files_struct *files = current->files; __fget() local 700 file = fcheck_files(files, fd); __fget() 746 struct files_struct *files = current->files; __fget_light() local 749 if (atomic_read(&files->count) == 1) { __fget_light() 750 file = __fcheck_files(files, fd); __fget_light() 794 struct files_struct *files = current->files; set_close_on_exec() local 796 spin_lock(&files->file_lock); set_close_on_exec() 797 fdt = files_fdtable(files); set_close_on_exec() 802 spin_unlock(&files->file_lock); set_close_on_exec() 807 struct files_struct *files = current->files; get_close_on_exec() local 811 fdt = files_fdtable(files); get_close_on_exec() 817 static int do_dup2(struct files_struct *files, 819 __releases(&files->file_lock) 830 * fget() treats larval files as absent. Potentially interesting, 838 fdt = files_fdtable(files); 849 spin_unlock(&files->file_lock); 852 filp_close(tofree, files); 857 spin_unlock(&files->file_lock); 864 struct files_struct *files = current->files; replace_fd() local 867 return __close_fd(files, fd); replace_fd() 872 spin_lock(&files->file_lock); replace_fd() 873 err = expand_files(files, fd); replace_fd() 876 return do_dup2(files, file, fd, flags); replace_fd() 879 spin_unlock(&files->file_lock); replace_fd() 887 struct files_struct *files = current->files; SYSCALL_DEFINE3() local 898 spin_lock(&files->file_lock); SYSCALL_DEFINE3() 899 err = expand_files(files, newfd); SYSCALL_DEFINE3() 908 return do_dup2(files, file, newfd, flags); SYSCALL_DEFINE3() 913 spin_unlock(&files->file_lock); SYSCALL_DEFINE3() 920 struct files_struct *files = current->files; SYSCALL_DEFINE2() local 924 if (!fcheck_files(files, oldfd)) SYSCALL_DEFINE2() 960 int iterate_fd(struct files_struct *files, unsigned n, iterate_fd() argument 966 if (!files) iterate_fd() 968 spin_lock(&files->file_lock); iterate_fd() 969 for (fdt = files_fdtable(files); n < fdt->max_fds; n++) { iterate_fd() 971 file = rcu_dereference_check_fdtable(files, fdt->fd[n]); iterate_fd() 978 spin_unlock(&files->file_lock); iterate_fd()
|
H A D | anon_inodes.c | 64 * Creates a new file by hooking it on a single inode. This is useful for files 66 * All the files created with anon_inode_getfile() will share a single inode, 133 * Creates a new file by hooking it on a single inode. This is useful for files 135 * All the files created with anon_inode_getfd() will share a single inode,
|
H A D | pipe.c | 64 if (pipe->files) pipe_lock_nested() 79 if (pipe->files) pipe_unlock() 541 if (!--pipe->files) { put_pipe_info() 688 pipe->files = 2; get_pipe_inode() 766 static int __do_pipe_flags(int *fd, struct file **files, int flags) __do_pipe_flags() argument 774 error = create_pipe_files(files, flags); __do_pipe_flags() 796 fput(files[0]); __do_pipe_flags() 797 fput(files[1]); __do_pipe_flags() 803 struct file *files[2]; do_pipe_flags() local 804 int error = __do_pipe_flags(fd, files, flags); do_pipe_flags() 806 fd_install(fd[0], files[0]); do_pipe_flags() 807 fd_install(fd[1], files[1]); do_pipe_flags() 818 struct file *files[2]; SYSCALL_DEFINE2() local 822 error = __do_pipe_flags(fd, files, flags); SYSCALL_DEFINE2() 825 fput(files[0]); SYSCALL_DEFINE2() 826 fput(files[1]); SYSCALL_DEFINE2() 831 fd_install(fd[0], files[0]); SYSCALL_DEFINE2() 832 fd_install(fd[1], files[1]); SYSCALL_DEFINE2() 871 pipe->files++; fifo_open() 878 pipe->files = 1; fifo_open() 881 inode->i_pipe->files++; fifo_open()
|
/linux-4.4.14/drivers/isdn/act2000/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
/linux-4.4.14/drivers/isdn/divert/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
/linux-4.4.14/drivers/isdn/pcbit/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
/linux-4.4.14/scripts/dtc/ |
H A D | Makefile | 10 # Source files need to get at the userspace version of libfdt_env.h to compile 27 # dependencies on generated files need to be listed explicitly 30 # generated files need to be cleaned explicitly 31 clean-files := dtc-lexer.lex.c dtc-parser.tab.c dtc-parser.tab.h
|
/linux-4.4.14/include/asm-generic/ |
H A D | segment.h | 4 * Only here because we have some old header files that expect it...
|
H A D | user.h | 5 * used for a.out files, which are not supported on new architectures.
|
/linux-4.4.14/arch/mips/boot/dts/cavium-octeon/ |
H A D | Makefile | 9 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/lantiq/ |
H A D | Makefile | 9 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/xilfpga/ |
H A D | Makefile | 9 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mn10300/lib/ |
H A D | Makefile | 2 # Makefile for the MN10300-specific library files..
|
/linux-4.4.14/arch/frv/lib/ |
H A D | Makefile | 2 # Makefile for FRV-specific library files..
|
/linux-4.4.14/arch/arm64/boot/dts/freescale/ |
H A D | Makefile | 7 clean-files := *.dtb
|
/linux-4.4.14/tools/testing/selftests/pstore/ |
H A D | pstore_post_reboot_tests | 37 prlog -n "Checking dmesg files exist in pstore filesystem ... " 40 prlog -n "Checking console files exist in pstore filesystem ... " 43 prlog -n "Checking pmsg files exist in pstore filesystem ... " 46 prlog -n "Checking dmesg files contain oops end marker" 50 files=`ls dmesg-${backend}-*` 51 operate_files $? "$files" grep_end_trace 73 prlog -n "Removing all files in pstore filesystem " 74 files=`ls *-${backend}-*` 75 operate_files $? "$files" rm
|
/linux-4.4.14/drivers/crypto/qat/qat_common/ |
H A D | Makefile | 6 clean-files += qat_rsapubkey-asn1.c qat_rsapubkey-asn1.h 7 clean-files += qat_rsaprivkey-asn1.c qat_rsapvivkey-asn1.h
|
/linux-4.4.14/scripts/genksyms/ |
H A D | Makefile | 11 # dependencies on generated files need to be listed explicitly 14 clean-files := keywords.hash.c lex.lex.c parse.tab.c parse.tab.h
|
/linux-4.4.14/include/linux/ |
H A D | fdtable.h | 71 #define rcu_dereference_check_fdtable(files, fdtfd) \ 72 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock)) 74 #define files_fdtable(files) \ 75 rcu_dereference_check_fdtable((files), (files)->fdt) 80 static inline struct file *__fcheck_files(struct files_struct *files, unsigned int fd) __fcheck_files() argument 82 struct fdtable *fdt = rcu_dereference_raw(files->fdt); __fcheck_files() 89 static inline struct file *fcheck_files(struct files_struct *files, unsigned int fd) fcheck_files() argument 92 !lockdep_is_held(&files->file_lock), fcheck_files() 94 return __fcheck_files(files, fd); fcheck_files() 100 #define fcheck(fd) fcheck_files(current->files, fd) 114 extern int __alloc_fd(struct files_struct *files, 116 extern void __fd_install(struct files_struct *files, 118 extern int __close_fd(struct files_struct *files,
|
H A D | swapfile.h | 6 * want to expose them to the dozens of source files that include swap.h
|
H A D | mc6821.h | 8 * this files expects the PIA_REG_PADWIDTH to be defined the numeric
|
H A D | eventpoll.h | 37 * This is called from inside fs/file_table.c:__fput() to unlink files 39 * correctly files that are closed without being removed from the eventpoll
|
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/iop/ |
H A D | Makefile | 4 # The official place for these files is probably at: 78 ## gen - Generate include files 90 ## copy - Copy files from official location 92 @echo "## Copying and fixing iop files ##" 101 @echo "## Copying and fixing iop asm files ##" 107 # I/O processor files: 108 ## iop - Generate I/O processor include files 121 ## doc - Generate .axw files from register description. 128 ## %.axw - Generate the specified .axw file (doesn't work for all files 129 ## due to inconsistent naming of .r files. 138 ## clean - Remove .h files and .axw files. 143 ## cleandoc - Remove .axw files.
|
/linux-4.4.14/fs/proc/ |
H A D | fd.c | 21 struct files_struct *files = NULL; seq_show() local 30 files = get_files_struct(task); seq_show() 33 if (files) { seq_show() 36 spin_lock(&files->file_lock); seq_show() 37 file = fcheck_files(files, fd); seq_show() 39 struct fdtable *fdt = files_fdtable(files); seq_show() 48 spin_unlock(&files->file_lock); seq_show() 49 put_files_struct(files); seq_show() 59 show_fd_locks(m, file, files); seq_show() 85 struct files_struct *files; tid_fd_revalidate() local 99 files = get_files_struct(task); tid_fd_revalidate() 100 if (files) { tid_fd_revalidate() 104 file = fcheck_files(files, fd); tid_fd_revalidate() 109 put_files_struct(files); tid_fd_revalidate() 136 put_files_struct(files); tid_fd_revalidate() 150 struct files_struct *files = NULL; proc_fd_link() local 156 files = get_files_struct(task); proc_fd_link() 160 if (files) { proc_fd_link() 164 spin_lock(&files->file_lock); proc_fd_link() 165 fd_file = fcheck_files(files, fd); proc_fd_link() 171 spin_unlock(&files->file_lock); proc_fd_link() 172 put_files_struct(files); proc_fd_link() 233 struct files_struct *files; proc_readfd_common() local 241 files = get_files_struct(p); proc_readfd_common() 242 if (!files) proc_readfd_common() 247 fd < files_fdtable(files)->max_fds; proc_readfd_common() 252 if (!fcheck_files(files, fd)) proc_readfd_common() 265 put_files_struct(files); proc_readfd_common()
|
/linux-4.4.14/drivers/usb/core/ |
H A D | Makefile | 2 # Makefile for USB Core files and filesystem
|
/linux-4.4.14/drivers/isdn/capi/ |
H A D | Makefile | 5 # Each configuration option enables a list of files.
|
/linux-4.4.14/drivers/isdn/hysdn/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
/linux-4.4.14/drivers/isdn/sc/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
/linux-4.4.14/arch/arc/boot/dts/ |
H A D | Makefile | 17 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/c6x/boot/dts/ |
H A D | Makefile | 20 clean-files := *.dtb
|
/linux-4.4.14/scripts/gdb/linux/ |
H A D | Makefile | 11 clean-files := *.pyc *.pyo $(if $(KBUILD_SRC),*.py)
|
/linux-4.4.14/arch/m68k/lib/ |
H A D | Makefile | 3 # Makefile for m68k-specific library files..
|
/linux-4.4.14/arch/mips/boot/dts/ingenic/ |
H A D | Makefile | 10 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/mti/ |
H A D | Makefile | 10 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/qca/ |
H A D | Makefile | 11 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/ralink/ |
H A D | Makefile | 12 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/h8300/boot/dts/ |
H A D | Makefile | 15 clean-files := *.dtb.S *.dtb
|
/linux-4.4.14/arch/m68k/68000/ |
H A D | Makefile | 7 # files into a single directory.
|
/linux-4.4.14/arch/arm64/boot/dts/arm/ |
H A D | Makefile | 8 clean-files := *.dtb
|
/linux-4.4.14/arch/avr32/lib/ |
H A D | Makefile | 2 # Makefile for AVR32-specific library files
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
H A D | Makefile | 3 # Core DSS files 6 # DSS compat layer files
|
/linux-4.4.14/drivers/zorro/ |
H A D | Makefile | 12 clean-files := devlist.h 14 # Dependencies on generated files need to be listed explicitly
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
H A D | qxl_debugfs.c | 5 * a copy of this software and associated documentation files (the 103 struct drm_info_list *files, qxl_debugfs_add_files() 109 if (qdev->debugfs[i].files == files) { qxl_debugfs_add_files() 121 qdev->debugfs[qdev->debugfs_count].files = files; qxl_debugfs_add_files() 125 drm_debugfs_create_files(files, nfiles, qxl_debugfs_add_files() 128 drm_debugfs_create_files(files, nfiles, qxl_debugfs_add_files() 141 drm_debugfs_remove_files(qdev->debugfs[i].files, qxl_debugfs_remove_files() 144 drm_debugfs_remove_files(qdev->debugfs[i].files, qxl_debugfs_remove_files() 102 qxl_debugfs_add_files(struct qxl_device *qdev, struct drm_info_list *files, unsigned nfiles) qxl_debugfs_add_files() argument
|
/linux-4.4.14/scripts/ |
H A D | headers_check.pl | 5 # Usage: headers_check.pl dir arch [files...] 6 # dir: dir to look for included files 8 # files: list of files to check 10 # The script reads the supplied files line by line and: 14 # Only include files located in asm* and linux* are checked. 15 # The rest are assumed to be system include files. 24 my ($dir, $arch, @files) = @ARGV; 31 foreach my $file (@files) {
|
H A D | checkkconfigsymbols.py | 70 help="Ignore files matching this pattern. Note that " 140 files = sorted(undefined_b.get(feature)) 141 print "%s\t%s" % (yel(feature), ", ".join(files)) 145 # check if there are new files that reference the undefined feature 147 files = sorted(undefined_b.get(feature) - 149 if files: 150 print "%s\t%s" % (yel(feature), ", ".join(files)) 162 files = sorted(undefined.get(feature)) 163 print "%s\t%s" % (yel(feature), ", ".join(files)) 214 and a list of referencing files as value. Files matching %ignore are not 219 referenced_features = dict() # {feature: [files]} 221 # use 'git ls-files' to get the worklist 222 stdout = execute("git ls-files") 234 # all non-Kconfig files are checked for consistency 239 # do not check files matching %ignore 245 # do not collect references for files matching %ignore 250 undefined = {} # {feature: [files]}
|
H A D | Makefile | 6 # pnmttologo: Convert pnm files to logo files
|
H A D | cleanfile | 3 # Clean a text file -- or directory of text files -- of stealth whitespace. 80 @files = (); 87 print STDERR "Usage: $name [-width #] files...\n"; 91 push(@files, $a); 95 foreach $f ( @files ) {
|
H A D | diffconfig | 3 # diffconfig - a tool to compare .config files. 15 Diffconfig is a simple utility for comparing two .config files. 16 Using standard diff to compare .config files often includes extraneous and 18 changes in configuration values between the two files. 26 If no config files are specified, .config and .config.old are used.
|
H A D | stackdelta | 3 # Read two files produced by the stackusage script, and show the 6 # Currently, only shows changes for functions listed in both files. We
|
H A D | cleanpatch | 3 # Clean a patch file -- or directory of patch files -- of stealth whitespace. 80 @files = (); 87 print STDERR "Usage: $name [-width #] files...\n"; 91 push(@files, $a); 95 foreach $f ( @files ) {
|
H A D | patch-kernel | 24 # A check is then made for "*.rej" files to see if the patch was 25 # successful. If it is, then all of the "*.orig" files are removed. 52 # increments the SUBLEVEL (x in 2.6.x.y) until no more patch files are found; 157 echo "Aborting. Reject files found." 160 # Remove backup files 179 echo "Aborting. Reject files found." 182 # Remove backup files
|
H A D | gen_initramfs_list.sh | 23 directory. "squash" forces all files to uid 0. 26 directory. "squash" forces all files to gid 0. 188 # if a directory is specified then add all files in given direcotry to fs 233 "-l") # files included in initramfs - used by kbuild 299 # we are careful to delete tmp files
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
H A D | Makefile | 13 # Core Fast -> U160 files 26 # Core U320 files 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 45 # Dependencies for generated files need to be listed explicitly
|
/linux-4.4.14/crypto/asymmetric_keys/ |
H A 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.4.14/usr/ |
H A D | Makefile | 48 # .initramfs_data.cpio.d is used to identify all files included 49 # in initramfs and to detect if any files are added/removed. 50 # Removed files are identified by directory timestamp being updated 63 # do not try to update files included in initramfs 69 # 2) There are changes in which files are included (added or deleted)
|
/linux-4.4.14/arch/arm/mach-ux500/ |
H A D | setup.h | 8 * These symbols are needed for board-specific files to call their 9 * own cpu-specific files
|
/linux-4.4.14/Documentation/filesystems/ |
H A D | dnotify_test.c | 28 /* we will now be notified if any of the files main() 29 in "." is modified or new files are created */ main()
|
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/ |
H A D | Makefile | 14 clean-files:= ${GENSRCS} ${GENHDRS} $(YSRCS:.y=.output) $(PROG) 56 rm -f $(clean-files) 58 # Create a dependency chain in generated files 67 # Create a dependency chain in generated files
|
/linux-4.4.14/drivers/isdn/i4l/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
/linux-4.4.14/arch/xtensa/boot/dts/ |
H A D | Makefile | 19 clean-files += *.dtb *.dtb.S
|
/linux-4.4.14/arch/xtensa/boot/lib/ |
H A D | Makefile | 24 clean-files := $(zlib)
|
/linux-4.4.14/arch/score/boot/ |
H A D | Makefile | 15 clean-files += vmlinux.bin
|
/linux-4.4.14/arch/metag/boot/dts/ |
H A D | Makefile | 21 clean-files += *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/ |
H A D | Makefile | 18 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/mips/boot/dts/netlogic/ |
H A D | Makefile | 13 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/ia64/sn/kernel/sn2/ |
H A D | Makefile | 9 # sn2 specific kernel files
|
/linux-4.4.14/arch/arm/mach-w90x900/ |
H A D | Makefile | 9 # W90X900 CPU support files
|
/linux-4.4.14/drivers/gpu/drm/ |
H A D | drm_debugfs.c | 14 * copy of this software and associated documentation files (the "Software"), 76 * Initialize a given set of debugfs files for a device 78 * \param files The array of files to create 79 * \param count The number of files given 84 * Create a given set of debugfs files represented by an array of 87 int drm_debugfs_create_files(const struct drm_info_list *files, int count, drm_debugfs_create_files() argument 96 u32 features = files[i].driver_features; drm_debugfs_create_files() 107 ent = debugfs_create_file(files[i].name, S_IFREG | S_IRUGO, drm_debugfs_create_files() 111 root->d_name.name, files[i].name); drm_debugfs_create_files() 119 tmp->info_ent = &files[i]; drm_debugfs_create_files() 128 drm_debugfs_remove_files(files, count, minor); drm_debugfs_create_files() 165 DRM_ERROR("Failed to create core drm debugfs files\n"); drm_debugfs_init() 182 * Remove a list of debugfs files 184 * \param files The list of files 185 * \param count The number of files 186 * \param minor The minor of which we should remove the files 191 int drm_debugfs_remove_files(const struct drm_info_list *files, int count, drm_debugfs_remove_files() argument 202 if (tmp->info_ent == &files[i]) { drm_debugfs_remove_files()
|
/linux-4.4.14/arch/x86/lib/ |
H A D | Makefile | 2 # Makefile for x86 specific library files. 15 clean-files := inat-tables.c
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
H A D | r8190_rtl8256.h | 6 This files contains programming code for the rtl8256
|
H A D | r8180_93cx6.h | 16 /*This files contains card eeprom (93c46 or 93c56) programming routines*/
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
H A D | Makefile | 3 # Each configuration option enables a list of files.
|
H A D | os_capi.h | 4 * CAPI Interface OS include files
|
/linux-4.4.14/drivers/input/ |
H A D | Makefile | 5 # Each configuration option enables a list of files.
|
/linux-4.4.14/drivers/eisa/ |
H A D | Makefile | 19 clean-files := devlist.h
|
/linux-4.4.14/arch/tile/lib/ |
H A D | Makefile | 2 # Makefile for TILE-specific library files..
|
/linux-4.4.14/arch/um/include/shared/ |
H A D | kern.h | 11 * The regular include files can't be included because this file is included
|
H A D | user.h | 14 * copying too much infrastructure for my taste, so userspace files 15 * get less checking than kernel files.
|
/linux-4.4.14/arch/cris/include/arch-v10/arch/ |
H A D | swab.h | 10 * asm instruction in CRIS) and the arch-independent files will put
|
/linux-4.4.14/net/wireless/ |
H A D | Makefile | 25 clean-files := regdb.c
|
/linux-4.4.14/include/uapi/asm-generic/ |
H A D | int-l64.h | 16 * header files exported to user space
|
H A D | int-ll64.h | 16 * header files exported to user space
|
/linux-4.4.14/arch/powerpc/platforms/86xx/ |
H A D | mpc86xx.h | 15 * mpc86xx_* files. Mostly for use by mpc86xx_setup().
|
/linux-4.4.14/arch/sh/lib/ |
H A D | Makefile | 2 # Makefile for SuperH-specific library files..
|
/linux-4.4.14/arch/sh/lib64/ |
H A D | Makefile | 2 # Makefile for the SH-5 specific library files..
|
/linux-4.4.14/arch/sparc/include/uapi/asm/ |
H A D | resource.h | 14 #define RLIMIT_NOFILE 6 /* max number of open files */
|
/linux-4.4.14/arch/arm/mach-sa1100/include/mach/ |
H A D | neponset.h | 7 * Only include this file from SA1100-specific files.
|
/linux-4.4.14/sound/oss/ |
H A D | Makefile | 6 # Each configuration option enables a list of files. 47 clean-files := msndperm.c msndinit.c pndsperm.c pndspini.c \ 50 # Firmware files that need translation 52 # The translated files are protected by a file that keeps track
|
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/ |
H A D | Makefile | 22 clean-files := spu_save_dump.h spu_restore_dump.h 24 # Compile SPU files 30 # Assemble SPU files
|
H A D | coredump.c | 86 * context files in the spu context. 91 * open the files. 94 * descriptor table is not shared, so files can't change or go away. 99 int n = iterate_fd(current->files, *fd, match_context, NULL); coredump_next_context()
|
/linux-4.4.14/drivers/staging/unisys/include/ |
H A D | guestlinuxdebug.h | 26 /* visorchipset driver files */ 36 /* visorbus driver files */ 42 /* visorclientbus driver files */ 45 /* virt hba driver files */ 48 /* virtpci driver files */ 51 /* virtnic driver files */ 54 /* uislib driver files */
|
H A D | periodic_work.h | 25 * Fields are declared only in the implementation .c files.
|
/linux-4.4.14/scripts/kconfig/ |
H A D | kxgettext.c | 87 struct file_line *files; member in struct:message 100 self->files = file_line__new(file, lineno); message__new() 101 if (self->files == NULL) message__new() 113 free(self->files); message__new() 142 fl->next = self->files; message__add_file_line() 143 self->files = fl; message__add_file_line() 191 struct file_line *fl = self->files; message__print_file_lineno()
|
H A D | Makefile | 56 # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files 62 --files-from=$(srctree)/scripts/kconfig/POTFILES.in \ 176 # object files used by all kconfig flavours 191 clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck 192 clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h 193 clean-files += config.pot linux.pot 206 # generated files seem to need this to find local include files
|
/linux-4.4.14/drivers/firmware/efi/libstub/ |
H A D | efi-stub-helper.c | 4 * implementation files. 19 * Some firmware implementations have problems reading files in one go. 22 * Unfortunately, reading files in chunks triggers *other* bugs on some 365 struct file_info *files; handle_cmdline_files() local 409 nr_files * sizeof(*files), (void **)&files); handle_cmdline_files() 427 file = &files[i]; handle_cmdline_files() 468 * Multiple files need to be at consecutive addresses in memory, handle_cmdline_files() 469 * so allocate enough memory for all the files. This is used handle_cmdline_files() 470 * for loading multiple files. handle_cmdline_files() 475 pr_efi_err(sys_table_arg, "Failed to alloc highmem for files\n"); handle_cmdline_files() 490 size = files[j].size; handle_cmdline_files() 498 status = efi_file_read(files[j].handle, handle_cmdline_files() 509 efi_file_close(files[j].handle); handle_cmdline_files() 514 efi_call_early(free_pool, files); handle_cmdline_files() 526 efi_file_close(files[k].handle); handle_cmdline_files() 528 efi_call_early(free_pool, files); handle_cmdline_files()
|
/linux-4.4.14/fs/sysfs/ |
H A D | group.c | 2 * fs/sysfs/group.c - Operations for adding/removing multiple files at once. 149 * warn and error if any of the attribute files being created already exist. 168 * It will explicitly warn and error if any of the attribute files being 201 * of the attribute files being created already exist. Furthermore, 202 * if the visibility of the files has changed through the is_visible() 204 * relevant files. 274 * sysfs_merge_group - merge files into a pre-existing attribute group. 276 * @grp: The files to create and the attribute group they belong to. 279 * files already exist in that group, in which case none of the new files 307 * sysfs_unmerge_group - remove files from a pre-existing attribute group. 309 * @grp: The files to remove and the attribute group they belong to.
|
/linux-4.4.14/include/uapi/linux/ |
H A D | cramfs_fs.h | 31 /* SIZE for device files is i_rdev */ 35 /* OFFSET: For symlinks and non-empty regular files, this 48 __u32 files; member in struct:cramfs_info
|
H A D | fiemap.h | 59 #define FIEMAP_EXTENT_DATA_TAIL 0x00000400 /* Multiple files in block. 67 * files. */
|
/linux-4.4.14/drivers/tty/vt/ |
H A D | Makefile | 12 clean-files := consolemap_deftbl.c defkeymap.c
|
/linux-4.4.14/drivers/lguest/ |
H A D | Makefile | 1 # Host requires the other files, which can be a module.
|
/linux-4.4.14/drivers/media/common/b2c2/ |
H A D | flexcop.h | 3 * flexcop.h - private header file for all flexcop-chip-source files
|
/linux-4.4.14/arch/alpha/include/uapi/asm/ |
H A D | resource.h | 8 #define RLIMIT_NOFILE 6 /* max number of open files */
|
H A D | ioctl.h | 33 * files for us. 58 /* ...and for the drivers/sound files... */
|
/linux-4.4.14/arch/alpha/kernel/ |
H A D | pci-sysfs.c | 6 * Alpha PCI resource files. 108 * pci_remove_resource_files - cleanup resource files 111 * If we created resource files for @dev, remove them from sysfs and 146 definitions in asm/core_xxx.h files). This corresponds sparse_mem_mmap_fits() 179 suffix = ""; /* Assume bwx machine, normal resourceN files. */ pci_create_attr() 224 * pci_create_resource_files - create resource files in sysfs for @dev 227 * Walk the resources in @dev creating files for each resource available. 234 /* Expose the PCI resources from this device as files */ pci_create_resource_files() 299 * @b: bus to create files under
|
/linux-4.4.14/arch/cris/include/arch-v32/arch/hwregs/ |
H A D | Makefile | 3 # The official place for these files is at: 78 # Disable implicit rule that may generate deleted files from RCS/ directory. 87 ## gen - Generate include files 148 ## copy - Copy files from official location 166 ## doc - Generate .axw files from register description. 173 ## %.axw - Generate the specified .axw file (doesn't work for all files 174 ## due to inconsistent naming ir .r files. 183 ## clean - Remove .h files and .axw files.
|
/linux-4.4.14/samples/kobject/ |
H A D | kobject-example.c | 18 * /sys/kernel/kobject-example In that directory, 3 files are created: 19 * "foo", "baz", and "bar". If an integer is written to these files, it can be 54 * looking at the attribute for the "baz" and "bar" files. 130 /* Create the files associated with this kobject */ example_init()
|
/linux-4.4.14/scripts/basic/ |
H A D | Makefile | 5 # This initial step is needed to avoid files to be recompiled
|
H A D | fixdep.c | 23 * includes autoconf.h, i.e. basically all files. This is extremely 32 * the files representing changed config options are touched 33 * which then let make pick up the changes and the files that use 43 * o if any of the files the compiler read changed, we need to rebuild 86 * be fast ;-) We don't even try to really parse the header files, but 100 * fix it! Some UserModeLinux files (look at arch/um/) call CONFIG_BOOM as 103 * those files will have correct dependencies. 345 * multiple dependency files, only parse_dep_file() 350 * files. parse_dep_file()
|
/linux-4.4.14/scripts/mod/ |
H A D | Makefile | 37 # dependencies on generated files need to be listed explicitly
|
/linux-4.4.14/security/apparmor/include/ |
H A D | path.h | 25 PATH_DELEGATE_DELETED = 0x08000, /* delegate deleted files */
|
H A D | apparmorfs.h | 37 struct aa_fs_entry *files; member in union:aa_fs_entry::__anon15148 60 { .name = (_name), .v_type = AA_FS_TYPE_DIR, .v.files = (_value) }
|
/linux-4.4.14/init/ |
H A D | Makefile | 22 # dependencies on generated files need to be listed explicitly
|
/linux-4.4.14/arch/powerpc/lib/ |
H A D | Makefile | 2 # Makefile for ppc-specific library files..
|
/linux-4.4.14/arch/mips/include/asm/ |
H A D | cevt-r4k.h | 12 * Avoids unsightly extern declarations in C files.
|
/linux-4.4.14/arch/mips/include/uapi/asm/ |
H A D | ioctl.h | 19 * files for us.
|
H A D | break.h | 16 * non-Linux/MIPS object files or make use of them in the future.
|
H A D | resource.h | 17 #define RLIMIT_NOFILE 5 /* max number of open files */
|
/linux-4.4.14/arch/mips/boot/dts/brcm/ |
H A D | Makefile | 33 clean-files := *.dtb *.dtb.S
|
/linux-4.4.14/arch/arm/mach-omap2/ |
H A D | common.c | 22 * Stub function for OMAP2 so that common files
|
/linux-4.4.14/arch/arm/mach-prima2/ |
H A D | common.h | 2 * This file contains common function prototypes to avoid externs in the c files.
|
/linux-4.4.14/drivers/acpi/ |
H A D | Makefile | 20 # All the builtin files are in the "acpi." module_param namespace. 24 # Power management related files
|
/linux-4.4.14/arch/x86/kernel/ |
H A D | x8664_ksyms_64.c | 1 /* Exports for assembly files. 2 All C exports should go in the respective C files. */
|
/linux-4.4.14/arch/powerpc/kernel/vdso32/ |
H A D | Makefile | 2 # List of files in the vdso, has to be asm only for now 40 # assembly rules for the .S files
|
/linux-4.4.14/arch/powerpc/kernel/vdso64/ |
H A D | Makefile | 1 # List of files in the vdso, has to be asm only for now 33 # assembly rules for the .S files
|
/linux-4.4.14/arch/s390/kernel/vdso32/ |
H A D | Makefile | 1 # List of files in the vdso, has to be asm only for now 40 # assembly rules for the .S files
|
/linux-4.4.14/arch/s390/kernel/vdso64/ |
H A D | Makefile | 1 # List of files in the vdso, has to be asm only for now 40 # assembly rules for the .S files
|
/linux-4.4.14/arch/avr32/boot/images/ |
H A D | Makefile | 56 # Generated files to be removed upon make clean 57 clean-files := vmlinux.elf vmlinux.bin vmlinux.gz uImage uImage.srec
|
/linux-4.4.14/arch/blackfin/include/asm/ |
H A D | trace.h | 34 /* Trace Macros for C files */ get_instruction() 57 /* Trace Macros for Assembly files */
|
H A D | clocks.h | 2 * Common Clock definitions for various kernel files
|
/linux-4.4.14/drivers/video/logo/ |
H A D | Makefile | 23 # Use logo-cfiles to retrieve list of .c files to be built 61 clean-files := *.o *_mono.c *_vga16.c *_clut224.c *_gray256.c
|
/linux-4.4.14/tools/vm/ |
H A D | slabinfo-gnuplot.sh | 232 files[$idx]=$p 240 files[$idx]=$p 251 if [ ${#files[@]} -eq 0 ] && [ ${#t_files[@]} -eq 0 ]; then 258 for i in "${files[@]}"; do 266 for i in "${files[@]}"; do
|
/linux-4.4.14/fs/hfs/ |
H A D | hfs_fs.h | 115 regular files in 132 files in the root 147 __be32 s_type; /* Type for new files */ 148 __be32 s_creator; /* Creator for new files */ 150 permissions on all files */ 153 kuid_t s_uid; /* The uid of all files */ 154 kgid_t s_gid; /* The gid of all files */
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
H A D | radeon_semaphore.c | 6 * copy of this software and associated documentation files (the 68 /* for debugging lockup only, used by sysfs debug files */ radeon_semaphore_emit_signal() 85 /* for debugging lockup only, used by sysfs debug files */ radeon_semaphore_emit_wait()
|
/linux-4.4.14/drivers/acpi/acpica/ |
H A D | accommon.h | 3 * Name: accommon.h - Common include files for generation of ACPICA source 48 * Common set of includes for all ACPICA source files. 52 * Note: The order of these include files is important.
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_semaphore.c | 6 * copy of this software and associated documentation files (the 66 /* for debugging lockup only, used by sysfs debug files */ amdgpu_semaphore_emit_signal() 81 /* for debugging lockup only, used by sysfs debug files */ amdgpu_semaphore_emit_wait()
|
/linux-4.4.14/kernel/gcov/ |
H A D | fs.c | 2 * This code exports profiling data as debugfs files to userspace. 37 * files. 38 * @num_loaded: number of profiling data sets for loaded object files. 40 * object files. Used only when gcov_persist=1. 89 * seq_file.start() implementation for gcov data files. Note that the 106 /* seq_file.next() implementation for gcov data files. */ gcov_seq_next() 118 /* seq_file.show() implementation for gcov data files. */ gcov_seq_show() 143 * all associated object files have been unloaded. 175 * open() implementation for gcov data files. Create a copy of the profiling 215 * release() implementation for gcov data files. Release resources allocated 268 * write() implementation for gcov data files. Reset profiling data for the 269 * corresponding file. If all associated object files have been unloaded, 363 * Create links to additional files (usually .c and .gcno files) which the 530 * and remove nodes for which all associated object files are unloaded. 732 * Callback to create/remove profiling files when code compiled with 768 * and all profiling files. gcov_fs_init()
|
/linux-4.4.14/drivers/staging/rtl8723au/hal/ |
H A D | odm_interface.c | 17 /* include files */
|
/linux-4.4.14/drivers/input/mouse/ |
H A D | Makefile | 5 # Each configuration option enables a list of files.
|
/linux-4.4.14/arch/sparc/lib/ |
H A D | Makefile | 1 # Makefile for Sparc library files..
|
/linux-4.4.14/arch/um/kernel/ |
H A D | Makefile | 11 clean-files :=
|
/linux-4.4.14/arch/alpha/lib/ |
H A D | Makefile | 2 # Makefile for alpha-specific library files..
|
/linux-4.4.14/arch/arm/boot/dts/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/arch/cris/boot/dts/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/kernel/debug/kdb/ |
H A D | Makefile | 13 clean-files := gen-kdb_cmds.c
|
/linux-4.4.14/kernel/ |
H A D | kcmp.c | 64 if (task->files) get_file_raw_ptr() 65 file = fcheck_files(task->files, idx); get_file_raw_ptr() 148 ret = kcmp_ptr(task1->files, task2->files, KCMP_FILES); SYSCALL_DEFINE5()
|
/linux-4.4.14/include/linux/spi/ |
H A D | flash.h | 14 * Board init code (in arch/.../mach-xxx/board-yyy.c files) can
|
/linux-4.4.14/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/arch/powerpc/platforms/powermac/ |
H A D | pmac.h | 9 * pmac_* files. Mostly for use by pmac_setup
|
/linux-4.4.14/arch/score/ |
H A D | Makefile | 19 # Board-dependent options and extra files
|
/linux-4.4.14/arch/sparc/boot/ |
H A D | install.sh | 30 # Make sure the files actually exist
|
/linux-4.4.14/arch/m68k/ |
H A D | install.sh | 30 # Make sure the files actually exist
|
/linux-4.4.14/arch/metag/boot/dts/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/arch/microblaze/boot/ |
H A D | Makefile | 37 clean-files += simpleImage.*.unstrip linux.bin.ub dts/*.dtb
|
/linux-4.4.14/arch/mips/boot/dts/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/arch/nios2/boot/ |
H A D | install.sh | 30 # Make sure the files actually exist
|
/linux-4.4.14/arch/powerpc/boot/dts/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/arch/hexagon/ |
H A D | Makefile | 29 # it is hard-coded in several files.
|
/linux-4.4.14/arch/arm64/boot/dts/include/dt-bindings/clk/ |
H A D | ti-dra7-atl.h | 4 * The constants defined in this header are used in dts files
|
/linux-4.4.14/arch/arm/include/debug/ |
H A D | exynos.S | 10 /* pull in the relevant register and map files. */
|
H A D | s5pv210.S | 10 /* pull in the relevant register and map files. */
|
/linux-4.4.14/include/linux/iio/ |
H A D | machine.h | 2 * Industrial I/O in kernel access map definitions for board files.
|
/linux-4.4.14/arch/x86/um/vdso/ |
H A D | Makefile | 10 # files to link into the vdso 13 # files to link into kernel
|
/linux-4.4.14/fs/cachefiles/ |
H A D | security.c | 67 pr_err("Security denies permission to create files: error %d", cachefiles_check_cache_dir() 97 * which create files */ cachefiles_determine_cache_security()
|
/linux-4.4.14/include/acpi/platform/ |
H A D | acenvex.h | 51 * Extra host configuration files. All ACPICA headers are included before 52 * including these files.
|
/linux-4.4.14/tools/perf/scripts/perl/ |
H A D | rw-by-file.pl | 5 # Display r/w activity for files read/written to for a given program 9 # in the status files. Those fields not available as handler params can
|
/linux-4.4.14/Documentation/DocBook/ |
H A D | Makefile | 3 # primarily based on in-line comments in various source files. 185 # Rules to generate postscripts and PNG images from .fig format files 229 @echo ' cleandocs - clean all generated DocBook files' 232 # Temporary files left by various tools 233 clean-files := $(DOCBOOKS) \ 251 $(Q)rm -f $(call objectify, $(clean-files))
|
/linux-4.4.14/ |
H A D | Makefile | 15 # o Look for make include files relative to root of kernel src 30 # Most importantly: sub-Makefiles should only ever modify files in 38 # The only cases where we need to modify files which have global 99 # kbuild supports saving output files in a separate directory. 100 # To locate output files in a separate directory two syntaxes are supported. 103 # Use "make O=dir/to/store/output/files/" 107 # where the output files shall be placed. 108 # export KBUILD_OUTPUT=dir/to/store/output/files/ 119 # Do we want to locate output files in a separate directory? 165 # Use 'make C=1' to enable checking of only re-compiled files. 166 # Use 'make C=2' to enable checking of *all* source files, regardless 561 # Read in dependencies to all Kconfig* files, make sure to run 571 # we execute the config step to be sure to catch updated Kconfig files 992 # Generate some files 1096 # duplicate lines in modules.order files. Those are removed 1166 # make clean Delete most generated files 1168 # make mrproper Delete the current configuration, and all generated files 1169 # make distclean Remove editor backup files, patch leftover files and the like 1171 # Directories & files removed with 'make clean' 1174 # Directories & files removed with 'make mrproper' 1186 clean: rm-files := $(CLEAN_FILES) 1198 # mrproper - Delete all generated files, including .config 1201 mrproper: rm-files := $(wildcard $(MRPROPER_FILES)) 1247 @echo ' clean - Remove most generated files but keep the config and' 1249 @echo ' mrproper - Remove all generated files + config + various backup files' 1250 @echo ' distclean - mrproper + remove editor backup and patch files' 1262 @echo ' dir/ - Build all files in dir and below' 1281 @echo ' includecheck - Check for duplicate included header files' 1291 @echo ' kselftest-clean - Remove all generated kselftest files' 1315 @echo ' make O=dir [targets] Locate all output files in "dir", including .config' 1361 # make M=dir clean Delete all automatically generated files 1411 clean: rm-files := $(KBUILD_EXTMOD)/Module.symvers 1419 @echo ' clean - remove generated files in module directory only' 1566 quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files))) 1567 cmd_rmfiles = rm -f $(rm-files) 1574 # Create temporary dir for module support files 1585 $(cmd_files): ; # Do not try to update included dependency files
|
/linux-4.4.14/firmware/ |
H A D | Makefile | 14 # include the firmware files to include, according to .config 173 # One of these files will change, or come into existence, whenever 174 # the configuration changes between 32-bit and 64-bit. The .S files 187 # The .o files depend on the binaries directly; the .S files don't. 191 # .ihex is used just as a simple way to hold binary files in a source tree 228 # Remove .S files and binaries created from ihex
|
/linux-4.4.14/drivers/net/wireless/libertas/ |
H A D | debugfs.c | 751 const struct lbs_debugfs_files *files; lbs_debugfs_init_one() local 760 files = &debugfs_files[i]; lbs_debugfs_init_one() 761 priv->debugfs_files[i] = debugfs_create_file(files->name, lbs_debugfs_init_one() 762 files->perm, lbs_debugfs_init_one() 765 &files->fops); lbs_debugfs_init_one() 773 files = &debugfs_events_files[i]; lbs_debugfs_init_one() 774 priv->debugfs_events_files[i] = debugfs_create_file(files->name, lbs_debugfs_init_one() 775 files->perm, lbs_debugfs_init_one() 778 &files->fops); lbs_debugfs_init_one() 786 files = &debugfs_regs_files[i]; lbs_debugfs_init_one() 787 priv->debugfs_regs_files[i] = debugfs_create_file(files->name, lbs_debugfs_init_one() 788 files->perm, lbs_debugfs_init_one() 791 &files->fops); lbs_debugfs_init_one()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
H A D | u_fs.h | 81 * should be no such files opened in the first place). 102 * This state is set after closing all functionfs files, when 112 * completed, even after functionfs files closure. 181 /* how many files are opened (EP0 and others) */ 280 * The endpoint files, filled by ffs_epfiles_create(),
|
/linux-4.4.14/arch/x86/entry/vdso/ |
H A D | Makefile | 13 # files to link into the vdso 16 # files to link into kernel 32 # Build the vDSO image C files and link them in. 87 # 2. Convert object files to x32. 196 clean-files := vdso32.so vdso32.so.dbg vdso64* vdso-image-*.c vdsox32.so*
|
/linux-4.4.14/scripts/package/ |
H A D | Makefile | 6 # The rpm target generates two rpm files: 9 # The src.rpm files includes all source for the kernel being built 12 # Process to create the rpm files 18 # e) generate the rpm files, based on kernel.spec 28 # Include only those top-level files that are needed by make, plus the GPL copy
|
/linux-4.4.14/tools/perf/tests/ |
H A D | dso-data.c | 301 TEST_ASSERT_VAL("failed leadking files", nr == nr_end); test__dso_data_cache() 321 * files count + 3 test__dso_data_reopen() 323 * reach the files count limit test__dso_data_reopen() 342 * reached the files count limit test__dso_data_reopen() 374 TEST_ASSERT_VAL("failed leadking files", nr == nr_end); test__dso_data_reopen()
|
/linux-4.4.14/drivers/nubus/ |
H A D | proc.c | 14 turn contain subdirectories. The "files" correspond to NuBus 17 icons) these files will provide "cooked" data. Otherwise they will 142 /* Now recursively populate it with files */ nubus_proc_attach_device()
|
/linux-4.4.14/lib/ |
H A D | earlycpio.c | 51 * cpio_data find_cpio_data - Search for files in an uncompressed cpio 58 * to find all files inside of a directory path. 62 * If you search for a filename and not for files in a directory,
|