]> git.baikalelectronics.ru Git - kernel.git/commit
mm: join struct fault_env and vm_fault
authorJan Kara <jack@suse.cz>
Wed, 14 Dec 2016 23:06:58 +0000 (15:06 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 15 Dec 2016 00:04:09 +0000 (16:04 -0800)
commit361c51e806db86cf86bd9360cf71f8743bdadd28
treecc10f381647ad18a17b05020783991ed32ae4590
parent3357aea23cf62296012fb36ceaccc08b779a8d7b
mm: join struct fault_env and vm_fault

Currently we have two different structures for passing fault information
around - struct vm_fault and struct fault_env.  DAX will need more
information in struct vm_fault to handle its faults so the content of
that structure would become event closer to fault_env.  Furthermore it
would need to generate struct fault_env to be able to call some of the
generic functions.  So at this point I don't think there's much use in
keeping these two structures separate.  Just embed into struct vm_fault
all that is needed to use it for both purposes.

Link: http://lkml.kernel.org/r/1479460644-25076-2-git-send-email-jack@suse.cz
Signed-off-by: Jan Kara <jack@suse.cz>
Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Ross Zwisler <ross.zwisler@linux.intel.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Documentation/filesystems/Locking
fs/userfaultfd.c
include/linux/huge_mm.h
include/linux/mm.h
include/linux/userfaultfd_k.h
mm/filemap.c
mm/huge_memory.c
mm/internal.h
mm/khugepaged.c
mm/memory.c
mm/nommu.c