mirror of
https://github.com/torvalds/linux.git
synced 2024-12-07 03:21:32 +00:00
29f34d1dd6
The memfd & fuse tests will share more common code in the following commits to test hugetlb support. Link: http://lkml.kernel.org/r/20171107122800.25517-9-marcandre.lureau@redhat.com Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Mike Kravetz <mike.kravetz@oracle.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Cc: Hugh Dickins <hughd@google.com> Cc: Michal Hocko <mhocko@kernel.org> Cc: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
10 lines
177 B
C
10 lines
177 B
C
#ifndef COMMON_H_
|
|
#define COMMON_H_
|
|
|
|
extern int hugetlbfs_test;
|
|
|
|
unsigned long default_huge_page_size(void);
|
|
int sys_memfd_create(const char *name, unsigned int flags);
|
|
|
|
#endif
|