Searched refs:files (Results 1 - 200 of 2426) sorted by relevance

1234567891011>>

/linux-4.1.27/arch/openrisc/lib/
H A DMakefile2 # Makefile for or32 specific library files..
/linux-4.1.27/arch/openrisc/boot/dts/
H A DMakefile8 clean-files := *.dtb.S
/linux-4.1.27/arch/arm64/boot/dts/amd/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/apm/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/cavium/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/exynos/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/freescale/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/mediatek/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/qcom/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/sprd/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/arm64/boot/dts/xilinx/
H A DMakefile5 clean-files := *.dtb
/linux-4.1.27/arch/cris/arch-v10/lib/
H A DMakefile2 # Makefile for Etrax-specific library files..
/linux-4.1.27/arch/cris/arch-v32/lib/
H A DMakefile2 # Makefile for Etrax-specific library files..
/linux-4.1.27/arch/cris/boot/dts/
H A DMakefile6 clean-files := *.dtb.S
/linux-4.1.27/arch/hexagon/lib/
H A DMakefile2 # Makefile for hexagon-specific library files.
/linux-4.1.27/arch/m32r/lib/
H A DMakefile2 # Makefile for M32R-specific library files..
/linux-4.1.27/scripts/selinux/mdp/
H A DMakefile5 clean-files := policy.* file_contexts
/linux-4.1.27/arch/parisc/lib/
H A DMakefile2 # Makefile for parisc-specific library files
/linux-4.1.27/arch/ia64/include/asm/
H A Dsegment.h4 /* Only here because we have some old header files that expect it.. */
/linux-4.1.27/arch/alpha/include/asm/
H A Dsegment.h4 /* Only here because we have some old header files that expect it.. */
/linux-4.1.27/drivers/isdn/act2000/
H A DMakefile3 # Each configuration option enables a list of files.
/linux-4.1.27/drivers/isdn/divert/
H A DMakefile3 # Each configuration option enables a list of files.
/linux-4.1.27/drivers/isdn/pcbit/
H A DMakefile3 # Each configuration option enables a list of files.
/linux-4.1.27/arch/mips/boot/dts/cavium-octeon/
H A DMakefile9 clean-files := *.dtb *.dtb.S
/linux-4.1.27/arch/mips/boot/dts/lantiq/
H A DMakefile9 clean-files := *.dtb *.dtb.S
/linux-4.1.27/arch/mips/boot/dts/mti/
H A DMakefile9 clean-files := *.dtb *.dtb.S
/linux-4.1.27/arch/mn10300/lib/
H A DMakefile2 # Makefile for the MN10300-specific library files..
/linux-4.1.27/arch/arm64/boot/dts/arm/
H A DMakefile7 clean-files := *.dtb
/linux-4.1.27/arch/frv/lib/
H A DMakefile2 # Makefile for FRV-specific library files..
/linux-4.1.27/scripts/dtc/
H A DMakefile10 # 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.1.27/include/asm-generic/
H A Dsegment.h4 * Only here because we have some old header files that expect it...
H A Duser.h5 * used for a.out files, which are not supported on new architectures.
/linux-4.1.27/fs/
H A Dfile.c60 * Expand the fdset in the files_struct. Called with the files spinlock
140 * The files->file_lock should be held on entry, and will be held on exit.
142 static int expand_fdtable(struct files_struct *files, int nr)
143 __releases(files->file_lock)
144 __acquires(files->file_lock)
148 spin_unlock(&files->file_lock);
150 spin_lock(&files->file_lock);
165 cur_fdt = files_fdtable(files);
169 rcu_assign_pointer(files->fdt, new_fdt);
170 if (cur_fdt != &files->fdtab)
180 * Expand files.
183 * Return <0 error code on error; 0 when nothing done; 1 when files were
185 * The files->file_lock should be held on entry, and will be held on exit.
187 static int expand_files(struct files_struct *files, int nr) expand_files() argument
191 fdt = files_fdtable(files); expand_files()
202 return expand_fdtable(files, nr); expand_files()
240 * Allocate a new files structure and copy contents from the
241 * passed in files structure.
315 * instantiated in the files array if a sibling thread dup_fd()
349 static struct fdtable *close_files(struct files_struct * files) close_files() argument
354 * files structure. close_files()
356 struct fdtable *fdt = rcu_dereference_raw(files->fdt); close_files()
369 filp_close(file, files); close_files()
383 struct files_struct *files; get_files_struct() local
386 files = task->files; get_files_struct()
387 if (files) get_files_struct()
388 atomic_inc(&files->count); get_files_struct()
391 return files; get_files_struct()
394 void put_files_struct(struct files_struct *files) put_files_struct() argument
396 if (atomic_dec_and_test(&files->count)) { put_files_struct()
397 struct fdtable *fdt = close_files(files); put_files_struct()
400 if (fdt != &files->fdtab) put_files_struct()
402 kmem_cache_free(files_cachep, files); put_files_struct()
406 void reset_files_struct(struct files_struct *files) reset_files_struct() argument
411 old = tsk->files; reset_files_struct()
413 tsk->files = files; reset_files_struct()
420 struct files_struct * files = tsk->files; exit_files() local
422 if (files) { exit_files()
424 tsk->files = NULL; exit_files()
426 put_files_struct(files); exit_files()
445 int __alloc_fd(struct files_struct *files, __alloc_fd() argument
452 spin_lock(&files->file_lock); __alloc_fd()
454 fdt = files_fdtable(files); __alloc_fd()
456 if (fd < files->next_fd) __alloc_fd()
457 fd = files->next_fd; __alloc_fd()
463 * N.B. For clone tasks sharing a files structure, this test __alloc_fd()
464 * will limit the total number of files that can be opened. __alloc_fd()
470 error = expand_files(files, fd); __alloc_fd()
481 if (start <= files->next_fd) __alloc_fd()
482 files->next_fd = fd + 1; __alloc_fd()
499 spin_unlock(&files->file_lock); __alloc_fd()
505 return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags); alloc_fd()
510 return __alloc_fd(current->files, 0, rlimit(RLIMIT_NOFILE), flags); get_unused_fd_flags()
514 static void __put_unused_fd(struct files_struct *files, unsigned int fd) __put_unused_fd() argument
516 struct fdtable *fdt = files_fdtable(files); __put_unused_fd()
518 if (fd < files->next_fd) __put_unused_fd()
519 files->next_fd = fd; __put_unused_fd()
524 struct files_struct *files = current->files; put_unused_fd() local
525 spin_lock(&files->file_lock); put_unused_fd()
526 __put_unused_fd(files, fd); put_unused_fd()
527 spin_unlock(&files->file_lock); put_unused_fd()
535 * The VFS is full of places where we drop the files lock between
546 * your throat. 'files' *MUST* be either current->files or obtained
552 void __fd_install(struct files_struct *files, unsigned int fd, __fd_install() argument
556 spin_lock(&files->file_lock); __fd_install()
557 fdt = files_fdtable(files); __fd_install()
560 spin_unlock(&files->file_lock); __fd_install()
565 __fd_install(current->files, fd, file); fd_install()
573 int __close_fd(struct files_struct *files, unsigned fd) __close_fd() argument
578 spin_lock(&files->file_lock); __close_fd()
579 fdt = files_fdtable(files); __close_fd()
587 __put_unused_fd(files, fd); __close_fd()
588 spin_unlock(&files->file_lock); __close_fd()
589 return filp_close(file, files); __close_fd()
592 spin_unlock(&files->file_lock); __close_fd()
596 void do_close_on_exec(struct files_struct *files) do_close_on_exec() argument
602 spin_lock(&files->file_lock); do_close_on_exec()
606 fdt = files_fdtable(files); do_close_on_exec()
621 __put_unused_fd(files, fd); do_close_on_exec()
622 spin_unlock(&files->file_lock); do_close_on_exec()
623 filp_close(file, files); do_close_on_exec()
625 spin_lock(&files->file_lock); do_close_on_exec()
629 spin_unlock(&files->file_lock); do_close_on_exec()
634 struct files_struct *files = current->files; __fget() local
638 file = fcheck_files(files, fd); __fget()
679 struct files_struct *files = current->files; __fget_light() local
682 if (atomic_read(&files->count) == 1) { __fget_light()
683 file = __fcheck_files(files, fd); __fget_light()
727 struct files_struct *files = current->files; set_close_on_exec() local
729 spin_lock(&files->file_lock); set_close_on_exec()
730 fdt = files_fdtable(files); set_close_on_exec()
735 spin_unlock(&files->file_lock); set_close_on_exec()
740 struct files_struct *files = current->files; get_close_on_exec() local
744 fdt = files_fdtable(files); get_close_on_exec()
750 static int do_dup2(struct files_struct *files,
752 __releases(&files->file_lock)
763 * fget() treats larval files as absent. Potentially interesting,
771 fdt = files_fdtable(files);
782 spin_unlock(&files->file_lock);
785 filp_close(tofree, files);
790 spin_unlock(&files->file_lock);
797 struct files_struct *files = current->files; replace_fd() local
800 return __close_fd(files, fd); replace_fd()
805 spin_lock(&files->file_lock); replace_fd()
806 err = expand_files(files, fd); replace_fd()
809 return do_dup2(files, file, fd, flags); replace_fd()
812 spin_unlock(&files->file_lock); replace_fd()
820 struct files_struct *files = current->files; SYSCALL_DEFINE3() local
831 spin_lock(&files->file_lock); SYSCALL_DEFINE3()
832 err = expand_files(files, newfd); SYSCALL_DEFINE3()
841 return do_dup2(files, file, newfd, flags); SYSCALL_DEFINE3()
846 spin_unlock(&files->file_lock); SYSCALL_DEFINE3()
853 struct files_struct *files = current->files; SYSCALL_DEFINE2() local
857 if (!fcheck_files(files, oldfd)) SYSCALL_DEFINE2()
893 int iterate_fd(struct files_struct *files, unsigned n, iterate_fd() argument
899 if (!files) iterate_fd()
901 spin_lock(&files->file_lock); iterate_fd()
902 for (fdt = files_fdtable(files); n < fdt->max_fds; n++) { iterate_fd()
904 file = rcu_dereference_check_fdtable(files, fdt->fd[n]); iterate_fd()
911 spin_unlock(&files->file_lock); iterate_fd()
H A Danon_inodes.c64 * 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 Dpipe.c58 if (pipe->files) pipe_lock_nested()
73 if (pipe->files) pipe_unlock()
536 if (!--pipe->files) { put_pipe_info()
652 pipe->files = 2; get_pipe_inode()
727 static int __do_pipe_flags(int *fd, struct file **files, int flags) __do_pipe_flags() argument
735 error = create_pipe_files(files, flags); __do_pipe_flags()
757 fput(files[0]); __do_pipe_flags()
758 fput(files[1]); __do_pipe_flags()
764 struct file *files[2]; do_pipe_flags() local
765 int error = __do_pipe_flags(fd, files, flags); do_pipe_flags()
767 fd_install(fd[0], files[0]); do_pipe_flags()
768 fd_install(fd[1], files[1]); do_pipe_flags()
779 struct file *files[2]; SYSCALL_DEFINE2() local
783 error = __do_pipe_flags(fd, files, flags); SYSCALL_DEFINE2()
786 fput(files[0]); SYSCALL_DEFINE2()
787 fput(files[1]); SYSCALL_DEFINE2()
792 fd_install(fd[0], files[0]); SYSCALL_DEFINE2()
793 fd_install(fd[1], files[1]); SYSCALL_DEFINE2()
832 pipe->files++; fifo_open()
839 pipe->files = 1; fifo_open()
842 inode->i_pipe->files++; fifo_open()
/linux-4.1.27/scripts/genksyms/
H A DMakefile11 # 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.1.27/include/linux/
H A Dfdtable.h66 #define rcu_dereference_check_fdtable(files, fdtfd) \
67 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock))
69 #define files_fdtable(files) \
70 rcu_dereference_check_fdtable((files), (files)->fdt)
75 static inline struct file *__fcheck_files(struct files_struct *files, unsigned int fd) __fcheck_files() argument
77 struct fdtable *fdt = rcu_dereference_raw(files->fdt); __fcheck_files()
84 static inline struct file *fcheck_files(struct files_struct *files, unsigned int fd) fcheck_files() argument
87 lockdep_is_held(&files->file_lock), fcheck_files()
89 return __fcheck_files(files, fd); fcheck_files()
95 #define fcheck(fd) fcheck_files(current->files, fd)
109 extern int __alloc_fd(struct files_struct *files,
111 extern void __fd_install(struct files_struct *files,
113 extern int __close_fd(struct files_struct *files,
H A Dswapfile.h6 * want to expose them to the dozens of source files that include swap.h
H A Dmc6821.h8 * this files expects the PIA_REG_PADWIDTH to be defined the numeric
H A Deventpoll.h37 * 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.1.27/arch/cris/include/arch-v32/arch/hwregs/iop/
H A DMakefile4 # 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.1.27/fs/proc/
H A Dfd.c21 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.1.27/drivers/isdn/capi/
H A DMakefile5 # Each configuration option enables a list of files.
/linux-4.1.27/drivers/isdn/hysdn/
H A DMakefile3 # Each configuration option enables a list of files.
/linux-4.1.27/drivers/isdn/sc/
H A DMakefile3 # Each configuration option enables a list of files.
/linux-4.1.27/arch/mips/boot/dts/
H A DMakefile12 clean-files := *.dtb *.dtb.S
/linux-4.1.27/arch/mips/boot/dts/ralink/
H A DMakefile12 clean-files := *.dtb *.dtb.S
/linux-4.1.27/drivers/usb/core/
H A DMakefile2 # Makefile for USB Core files and filesystem
/linux-4.1.27/arch/avr32/lib/
H A DMakefile2 # Makefile for AVR32-specific library files
/linux-4.1.27/arch/c6x/boot/dts/
H A DMakefile20 clean-files := *.dtb
/linux-4.1.27/arch/m68k/68000/
H A DMakefile7 # files into a single directory.
/linux-4.1.27/arch/m68k/lib/
H A DMakefile3 # Makefile for m68k-specific library files..
/linux-4.1.27/arch/arc/boot/dts/
H A DMakefile15 clean-files := *.dtb *.dtb.S
/linux-4.1.27/scripts/gdb/linux/
H A DMakefile11 clean-files := *.pyc *.pyo $(if $(KBUILD_SRC),*.py)
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
H A DMakefile3 # Core DSS files
6 # DSS compat layer files
/linux-4.1.27/drivers/zorro/
H A DMakefile12 clean-files := devlist.h
14 # Dependencies on generated files need to be listed explicitly
/linux-4.1.27/drivers/gpu/drm/qxl/
H A Dqxl_debugfs.c5 * 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.1.27/scripts/
H A Dheaders_check.pl5 # 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 Dcheckkconfigsymbols.py118 files = sorted(undefined_b.get(feature))
119 print "%s\t%s" % (feature, ", ".join(files))
120 # check if there are new files that reference the undefined feature
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))
165 and a list of referencing files as value."""
169 referenced_features = dict() # {feature: [files]}
171 # use 'git ls-files' to get the worklist
172 stdout = execute("git ls-files")
184 # all non-Kconfig files are checked for consistency
193 undefined = {} # {feature: [files]}
H A DMakefile6 # pnmttologo: Convert pnm files to logo files
H A Dcleanfile3 # 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 Ddiffconfig3 # 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 Dcleanpatch3 # 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 Dpatch-kernel24 # 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 Dgen_initramfs_list.sh23 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
H A Dlink-vmlinux.sh6 # $(KBUILD_VMLINUX_MAIN). Most are built-in.o files from top-level directories
49 # ${1} - optional extra .o files
113 # Delete output files in case of error
H A Ddocproc.c2 * docproc is a simple preprocessor for the template files
22 * Scans the template file and list all files
101 fprintf(stderr, "depend: generate list of files referenced within file\n"); usage()
138 /* Types used to create list of all exported symbols in a number of files */
179 * List all files referenced within the template file.
246 * Function names are obtained from all the src files
527 * in the various files; main()
530 * and exported in different files :-(( main()
/linux-4.1.27/drivers/scsi/aic7xxx/
H A DMakefile13 # 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.1.27/crypto/asymmetric_keys/
H A DMakefile31 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/usr/
H A DMakefile48 # .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.1.27/Documentation/filesystems/
H A Ddnotify_test.c28 /* we will now be notified if any of the files main()
29 in "." is modified or new files are created */ main()
/linux-4.1.27/drivers/isdn/i4l/
H A DMakefile3 # Each configuration option enables a list of files.
/linux-4.1.27/drivers/scsi/aic7xxx/aicasm/
H A DMakefile14 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.1.27/arch/xtensa/boot/dts/
H A DMakefile15 clean-files := *.dtb.S
/linux-4.1.27/arch/xtensa/boot/lib/
H A DMakefile24 clean-files := $(zlib)
/linux-4.1.27/arch/mips/boot/dts/netlogic/
H A DMakefile13 clean-files := *.dtb *.dtb.S
/linux-4.1.27/arch/score/boot/
H A DMakefile15 clean-files += vmlinux.bin
/linux-4.1.27/arch/ia64/sn/kernel/sn2/
H A DMakefile9 # sn2 specific kernel files
/linux-4.1.27/arch/metag/boot/dts/
H A DMakefile22 clean-files += *.dtb *.dtb.S
/linux-4.1.27/arch/arm/mach-w90x900/
H A DMakefile9 # W90X900 CPU support files
/linux-4.1.27/drivers/gpu/drm/
H A Ddrm_debugfs.c14 * 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.1.27/arch/x86/lib/
H A DMakefile2 # Makefile for x86 specific library files.
15 clean-files := inat-tables.c
/linux-4.1.27/arch/arm/mach-ux500/
H A Dsetup.h8 * These symbols are needed for board-specific files to call their
9 * own cpu-specific files
/linux-4.1.27/drivers/isdn/hardware/eicon/
H A DMakefile3 # Each configuration option enables a list of files.
H A Dos_capi.h4 * CAPI Interface OS include files
/linux-4.1.27/drivers/input/
H A DMakefile5 # Each configuration option enables a list of files.
/linux-4.1.27/drivers/eisa/
H A DMakefile19 clean-files := devlist.h
/linux-4.1.27/arch/sh/lib/
H A DMakefile2 # Makefile for SuperH-specific library files..
/linux-4.1.27/arch/sh/lib64/
H A DMakefile2 # Makefile for the SH-5 specific library files..
/linux-4.1.27/arch/sparc/include/uapi/asm/
H A Dresource.h14 #define RLIMIT_NOFILE 6 /* max number of open files */
/linux-4.1.27/arch/tile/lib/
H A DMakefile2 # Makefile for TILE-specific library files..
/linux-4.1.27/arch/um/include/shared/
H A Dkern.h11 * The regular include files can't be included because this file is included
H A Duser.h14 * copying too much infrastructure for my taste, so userspace files
15 * get less checking than kernel files.
/linux-4.1.27/arch/mips/boot/dts/brcm/
H A DMakefile19 clean-files := *.dtb *.dtb.S
/linux-4.1.27/include/uapi/asm-generic/
H A Dint-l64.h16 * header files exported to user space
H A Dint-ll64.h16 * header files exported to user space
/linux-4.1.27/arch/powerpc/platforms/86xx/
H A Dmpc86xx.h15 * mpc86xx_* files. Mostly for use by mpc86xx_setup().
/linux-4.1.27/arch/powerpc/lib/
H A DMakefile2 # Makefile for ppc-specific library files..
/linux-4.1.27/arch/cris/include/arch-v10/arch/
H A Dswab.h10 * asm instruction in CRIS) and the arch-independent files will put
/linux-4.1.27/arch/arm/mach-sa1100/include/mach/
H A Dneponset.h7 * Only include this file from SA1100-specific files.
/linux-4.1.27/net/wireless/
H A DMakefile25 clean-files := regdb.c
/linux-4.1.27/sound/oss/
H A DMakefile6 # 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.1.27/arch/powerpc/platforms/cell/spufs/
H A DMakefile22 clean-files := spu_save_dump.h spu_restore_dump.h
24 # Compile SPU files
30 # Assemble SPU files
H A Dcoredump.c86 * 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.1.27/drivers/staging/unisys/include/
H A Dguestlinuxdebug.h27 /* visorchipset driver files */
37 /* visorbus driver files */
43 /* visorclientbus driver files */
46 /* virt hba driver files */
49 /* virtpci driver files */
52 /* virtnic driver files */
55 /* uislib driver files */
H A Dperiodic_work.h24 * Fields are declared only in the implementation .c files.
/linux-4.1.27/scripts/kconfig/
H A Dkxgettext.c87 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 DMakefile56 # Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
62 --files-from=$(srctree)/scripts/kconfig/POTFILES.in \
164 # object files used by all kconfig flavours
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
194 # generated files seem to need this to find local include files
/linux-4.1.27/drivers/firmware/efi/libstub/
H A Defi-stub-helper.c4 * 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.1.27/fs/sysfs/
H A Dgroup.c2 * fs/sysfs/group.c - Operations for adding/removing multiple files at once.
136 * warn and error if any of the attribute files being created already exist.
155 * It will explicitly warn and error if any of the attribute files being
188 * of the attribute files being created already exist. Furthermore,
189 * if the visibility of the files has changed through the is_visible()
191 * relevant files.
261 * sysfs_merge_group - merge files into a pre-existing attribute group.
263 * @grp: The files to create and the attribute group they belong to.
266 * files already exist in that group, in which case none of the new files
294 * sysfs_unmerge_group - remove files from a pre-existing attribute group.
296 * @grp: The files to remove and the attribute group they belong to.
/linux-4.1.27/include/uapi/linux/
H A Dcramfs_fs.h31 /* 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 Dfiemap.h59 #define FIEMAP_EXTENT_DATA_TAIL 0x00000400 /* Multiple files in block.
67 * files. */
/linux-4.1.27/drivers/lguest/
H A DMakefile1 # Host requires the other files, which can be a module.
/linux-4.1.27/drivers/staging/rtl8192u/
H A Dr8190_rtl8256.h6 This files contains programming code for the rtl8256
H A Dr8180_93cx6.h16 /*This files contains card eeprom (93c46 or 93c56) programming routines*/
/linux-4.1.27/arch/mips/include/asm/
H A Dcevt-r4k.h12 * Avoids unsightly extern declarations in C files.
H A Dfpregdef.h19 * hardfloat and softfloat object files. The kernel build uses soft-float by
21 * But this in turn causes assembler errors in files which access hardfloat
/linux-4.1.27/drivers/tty/vt/
H A DMakefile12 clean-files := consolemap_deftbl.c defkeymap.c
/linux-4.1.27/drivers/media/common/b2c2/
H A Dflexcop.h3 * flexcop.h - private header file for all flexcop-chip-source files
/linux-4.1.27/init/
H A DMakefile22 # dependencies on generated files need to be listed explicitly
/linux-4.1.27/arch/mips/include/uapi/asm/
H A Dioctl.h19 * files for us.
H A Dbreak.h16 * non-Linux/MIPS object files or make use of them in the future.
H A Dresource.h17 #define RLIMIT_NOFILE 5 /* max number of open files */
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/
H A DMakefile3 # 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.1.27/arch/arm/mach-omap2/
H A Dcommon.c22 * Stub function for OMAP2 so that common files
H A Domap_opp_data.h29 * DO NOT USE these in board files/pm core etc.
72 * XXX Is this needed? Just use C99 initializers in data files?
H A Dsr_device.c78 * XXX There needs to be some way for board files or sr_set_nvalues()
166 * API to be called from board files to enable smartreflex
/linux-4.1.27/arch/arm/mach-prima2/
H A Dcommon.h2 * This file contains common function prototypes to avoid externs in the c files.
/linux-4.1.27/arch/alpha/include/uapi/asm/
H A Dresource.h8 #define RLIMIT_NOFILE 6 /* max number of open files */
H A Dioctl.h33 * files for us.
58 /* ...and for the drivers/sound files... */
/linux-4.1.27/arch/alpha/kernel/
H A Dpci-sysfs.c6 * 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.1.27/samples/kobject/
H A Dkobject-example.c18 * /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.1.27/scripts/basic/
H A DMakefile5 # This initial step is needed to avoid files to be recompiled
H A Dfixdep.c23 * 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.
363 * multiple dependency files, only parse_dep_file()
368 * files. parse_dep_file()
/linux-4.1.27/scripts/mod/
H A DMakefile37 # dependencies on generated files need to be listed explicitly
/linux-4.1.27/security/apparmor/include/
H A Dpath.h25 PATH_DELEGATE_DELETED = 0x08000, /* delegate deleted files */
H A Dapparmorfs.h37 struct aa_fs_entry *files; member in union:aa_fs_entry::__anon14288
60 { .name = (_name), .v_type = AA_FS_TYPE_DIR, .v.files = (_value) }
/linux-4.1.27/arch/x86/kernel/
H A Dx8664_ksyms_64.c1 /* Exports for assembly files.
2 All C exports should go in the respective C files. */
/linux-4.1.27/drivers/acpi/
H A DMakefile20 # All the builtin files are in the "acpi." module_param namespace.
24 # Power management related files
/linux-4.1.27/drivers/video/logo/
H A DMakefile23 # 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.1.27/arch/s390/kernel/vdso32/
H A DMakefile1 # List of files in the vdso, has to be asm only for now
40 # assembly rules for the .S files
/linux-4.1.27/arch/s390/kernel/vdso64/
H A DMakefile1 # List of files in the vdso, has to be asm only for now
40 # assembly rules for the .S files
/linux-4.1.27/arch/powerpc/kernel/vdso32/
H A DMakefile2 # List of files in the vdso, has to be asm only for now
40 # assembly rules for the .S files
/linux-4.1.27/arch/powerpc/kernel/vdso64/
H A DMakefile1 # List of files in the vdso, has to be asm only for now
33 # assembly rules for the .S files
/linux-4.1.27/arch/avr32/boot/images/
H A DMakefile56 # Generated files to be removed upon make clean
57 clean-files := vmlinux.elf vmlinux.bin vmlinux.gz uImage uImage.srec
/linux-4.1.27/arch/blackfin/include/asm/
H A Dtrace.h34 /* Trace Macros for C files */ get_instruction()
57 /* Trace Macros for Assembly files */
H A Dclocks.h2 * Common Clock definitions for various kernel files
/linux-4.1.27/fs/hfs/
H A Dhfs_fs.h115 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.1.27/drivers/acpi/acpica/
H A Daccommon.h3 * 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.1.27/drivers/gpu/drm/radeon/
H A Dradeon_semaphore.c6 * 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.1.27/kernel/gcov/
H A Dfs.c2 * 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.1.27/drivers/staging/rtl8723au/hal/
H A Dodm_interface.c17 /* include files */
/linux-4.1.27/drivers/staging/unisys/visorutil/
H A Dcharqueue.h24 * Fields are declared only in the implementation .c files.
/linux-4.1.27/drivers/input/mouse/
H A DMakefile5 # Each configuration option enables a list of files.
/linux-4.1.27/arch/sparc/boot/
H A Dinstall.sh30 # Make sure the files actually exist
/linux-4.1.27/arch/sparc/lib/
H A DMakefile1 # Makefile for Sparc library files..
/linux-4.1.27/arch/um/kernel/
H A DMakefile11 clean-files :=
/linux-4.1.27/arch/microblaze/boot/
H A DMakefile37 clean-files += simpleImage.*.unstrip linux.bin.ub dts/*.dtb
/linux-4.1.27/arch/mips/boot/dts/include/dt-bindings/clk/
H A Dti-dra7-atl.h4 * The constants defined in this header are used in dts files
/linux-4.1.27/include/linux/spi/
H A Dflash.h14 * Board init code (in arch/.../mach-xxx/board-yyy.c files) can
/linux-4.1.27/kernel/debug/kdb/
H A DMakefile13 clean-files := gen-kdb_cmds.c
/linux-4.1.27/arch/powerpc/platforms/powermac/
H A Dpmac.h9 * pmac_* files. Mostly for use by pmac_setup
/linux-4.1.27/arch/score/
H A DMakefile19 # Board-dependent options and extra files
/linux-4.1.27/arch/nios2/boot/
H A Dinstall.sh30 # Make sure the files actually exist
/linux-4.1.27/arch/powerpc/boot/dts/include/dt-bindings/clk/
H A Dti-dra7-atl.h4 * The constants defined in this header are used in dts files
/linux-4.1.27/arch/arm64/boot/dts/include/dt-bindings/clk/
H A Dti-dra7-atl.h4 * The constants defined in this header are used in dts files
/linux-4.1.27/arch/hexagon/
H A DMakefile29 # it is hard-coded in several files.
/linux-4.1.27/arch/m68k/
H A Dinstall.sh30 # Make sure the files actually exist
/linux-4.1.27/arch/metag/boot/dts/include/dt-bindings/clk/
H A Dti-dra7-atl.h4 * The constants defined in this header are used in dts files
/linux-4.1.27/arch/arm/include/debug/
H A Dexynos.S10 /* pull in the relevant register and map files. */
H A Ds5pv210.S10 /* pull in the relevant register and map files. */
/linux-4.1.27/arch/alpha/lib/
H A DMakefile2 # Makefile for alpha-specific library files..
/linux-4.1.27/arch/arm/boot/dts/include/dt-bindings/clk/
H A Dti-dra7-atl.h4 * The constants defined in this header are used in dts files
/linux-4.1.27/kernel/
H A Dkcmp.c64 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.1.27/include/dt-bindings/clk/
H A Dti-dra7-atl.h4 * The constants defined in this header are used in dts files
/linux-4.1.27/include/linux/iio/
H A Dmachine.h2 * Industrial I/O in kernel access map definitions for board files.
/linux-4.1.27/arch/x86/um/vdso/
H A DMakefile10 # files to link into the vdso
13 # files to link into kernel
/linux-4.1.27/fs/cachefiles/
H A Dsecurity.c67 pr_err("Security denies permission to create files: error %d", cachefiles_check_cache_dir()
97 * which create files */ cachefiles_determine_cache_security()
/linux-4.1.27/tools/perf/scripts/perl/
H A Drw-by-file.pl5 # 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.1.27/include/acpi/platform/
H A Dacenvex.h51 * Extra host configuration files. All ACPICA headers are included before
52 * including these files.
H A Dacenv.h167 * Host configuration files. The compiler configuration files are included
168 * by the host files.
229 * the host/compiler files above.
321 * the standard header files may be used.
326 * It may be necessary to tailor these include files to the target
/linux-4.1.27/Documentation/DocBook/
H A DMakefile3 # primarily based on in-line comments in various source files.
163 # Rules to generate postscripts and PNG images from .fig format files
207 @echo ' cleandocs - clean all generated DocBook files'
210 # Temporary files left by various tools
211 clean-files := $(DOCBOOKS) \
226 $(Q)rm -f $(call objectify, $(clean-files))
/linux-4.1.27/
H A DMakefile15 # 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
570 # Read in dependencies to all Kconfig* files, make sure to run
580 # we execute the config step to be sure to catch updated Kconfig files
996 # Generate some files
1097 # duplicate lines in modules.order files. Those are removed
1167 # make clean Delete most generated files
1169 # make mrproper Delete the current configuration, and all generated files
1170 # make distclean Remove editor backup files, patch leftover files and the like
1172 # Directories & files removed with 'make clean'
1175 # Directories & files removed with 'make mrproper'
1187 clean: rm-files := $(CLEAN_FILES)
1199 # mrproper - Delete all generated files, including .config
1202 mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1248 @echo ' clean - Remove most generated files but keep the config and'
1250 @echo ' mrproper - Remove all generated files + config + various backup files'
1251 @echo ' distclean - mrproper + remove editor backup and patch files'
1263 @echo ' dir/ - Build all files in dir and below'
1282 @echo ' includecheck - Check for duplicate included header 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'
1565 quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files)))
1566 cmd_rmfiles = rm -f $(rm-files)
1573 # Create temporary dir for module support files
1584 $(cmd_files): ; # Do not try to update included dependency files
/linux-4.1.27/firmware/
H A DMakefile14 # 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.1.27/drivers/net/wireless/libertas/
H A Ddebugfs.c751 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.1.27/arch/x86/vdso/
H A DMakefile13 # files to link into the vdso
16 # files to link into kernel
34 # Build the vDSO image C files and link them in.
89 # 2. Convert object files to x32.
209 clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* vdso64* vdso-image-*.c vdsox32.so*
/linux-4.1.27/drivers/usb/gadget/function/
H A Du_fs.h81 * 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.1.27/scripts/package/
H A DMakefile6 # 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
30 # Include only those top-level files that are needed by make, plus the GPL copy
/linux-4.1.27/tools/perf/tests/
H A Ddso-data.c290 TEST_ASSERT_VAL("failed leadking files", nr == nr_end); test__dso_data_cache()
310 * files count + 3 test__dso_data_reopen()
312 * reach the files count limit test__dso_data_reopen()
331 * reached the files count limit test__dso_data_reopen()
363 TEST_ASSERT_VAL("failed leadking files", nr == nr_end); test__dso_data_reopen()
/linux-4.1.27/drivers/nubus/
H A Dproc.c14 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.1.27/lib/
H A Dearlycpio.c51 * 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,
/linux-4.1.27/arch/unicore32/include/asm/
H A Dmemory.h12 * Note: this file should not be included by non-asm/.h files
56 * files. Use virt_to_phys/phys_to_virt/__pa/__va instead.
/linux-4.1.27/drivers/gpu/drm/msm/dsi/
H A Dsfpb.xml.h10 The rules-ng-ng source files this header was generated from are:
27 a copy of this software and associated documentation files (the
/linux-4.1.27/drivers/gpu/drm/msm/hdmi/
H A Dqfprom.xml.h10 The rules-ng-ng source files this header was generated from are:
27 a copy of this software and associated documentation files (the
/linux-4.1.27/drivers/gpu/drm/msm/mdp/
H A Dmdp_common.xml.h10 The rules-ng-ng source files this header was generated from are:
27 a copy of this software and associated documentation files (the
/linux-4.1.27/drivers/gpu/drm/omapdrm/
H A Domap_debugfs.c77 /* list of debufs files that are applicable to all devices */
84 /* list of debugfs files that are specific to devices with dmm/tiler */
/linux-4.1.27/include/acpi/
H A Dacpi.h48 * Public include files for use by code that will interface to ACPICA.
54 * Note: The order of these include files is important.
/linux-4.1.27/include/trace/
H A Ddefine_trace.h2 * Trace files that want to automate creation of all tracepoints defined
115 /* We may be processing more files */
/linux-4.1.27/net/sunrpc/
H A Drpc_pipe.c667 const struct rpc_filelist *files, __rpc_depopulate()
676 name.name = files[i].name; __rpc_depopulate()
677 name.len = strlen(files[i].name); __rpc_depopulate()
699 const struct rpc_filelist *files, rpc_depopulate()
705 __rpc_depopulate(parent, files, start, eof); rpc_depopulate()
710 const struct rpc_filelist *files, rpc_populate()
720 dentry = __rpc_lookup_create_exclusive(parent, files[i].name); rpc_populate()
724 switch (files[i].mode & S_IFMT) { rpc_populate()
729 files[i].mode, rpc_populate()
730 files[i].i_fop, rpc_populate()
735 files[i].mode, rpc_populate()
745 __rpc_depopulate(parent, files, start, eof); rpc_populate()
1164 static const struct rpc_filelist files[] = { variable in typeref:struct:rpc_filelist
1332 struct qstr q = QSTR_INIT(files[RPCAUTH_gssd].name, rpc_gssd_dummy_populate()
1333 strlen(files[RPCAUTH_gssd].name)); rpc_gssd_dummy_populate()
1404 if (rpc_populate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF, NULL)) rpc_fill_super()
1409 __rpc_depopulate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF); rpc_fill_super()
1432 __rpc_depopulate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF); rpc_fill_super()
666 __rpc_depopulate(struct dentry *parent, const struct rpc_filelist *files, int start, int eof) __rpc_depopulate() argument
698 rpc_depopulate(struct dentry *parent, const struct rpc_filelist *files, int start, int eof) rpc_depopulate() argument
709 rpc_populate(struct dentry *parent, const struct rpc_filelist *files, int start, int eof, void *private) rpc_populate() argument
/linux-4.1.27/Documentation/dvb/
H A Dget_dvb_firmware260 my $url = "http://www.twinhan.com/files/driver/USB-Ter/$sourcefile";
294 my $url = "http://ao2.it/sites/default/files/blog/2012/11/06/linux-support-digicom-digitune-s-vp7049-udtt7049/$fwfile";
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});
594 my $url = "http://linux.terratec.de/files/TERRATEC_S7/$firmware";
644 my $url = "http://l4m-daten.de/files/";
768 my %files = (
777 foreach my $fwfile (keys %files) {
779 verify($fwfile, $files{$fwfile});
790 my $url = "http://www.hauppauge.de/files/drivers/";

Completed in 5152 milliseconds

1234567891011>>