[PATCH v3 1/1] fs: move kernel_read_file* to its own include file

2020-06-17 Thread Scott Branden
Move kernel_read_file* out of linux/fs.h to its own linux/kernel_read_file.h include file. That header gets pulled in just about everywhere and doesn't really need functions not related to the general fs interface. Suggested-by: Christoph Hellwig Signed-off-by: Scott Branden --- Changes since v

Re: [PATCH v3 1/1] fs: move kernel_read_file* to its own include file

2020-06-24 Thread Christoph Hellwig
Looks good, Reviewed-by: Christoph Hellwig ___ kexec mailing list kexec@lists.infradead.org http://lists.infradead.org/mailman/listinfo/kexec

Re: [PATCH v3 1/1] fs: move kernel_read_file* to its own include file

2020-06-30 Thread Scott Branden
Hi Al (Viro), Are you able to take this patch into your tree or does someone else? On 2020-06-24 12:55 a.m., Christoph Hellwig wrote: Looks good, Reviewed-by: Christoph Hellwig ___ kexec mailing list kexec@lists.infradead.org http://lists.infrade

Re: [PATCH v3 1/1] fs: move kernel_read_file* to its own include file

2020-07-01 Thread Greg Kroah-Hartman
On Wed, Jun 17, 2020 at 09:12:18AM -0700, Scott Branden wrote: > Move kernel_read_file* out of linux/fs.h to its own linux/kernel_read_file.h > include file. That header gets pulled in just about everywhere > and doesn't really need functions not related to the general fs interface. > > Suggested-