Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mm/hmm: fix build when HMM is disabled

Combinatorial Kconfig is painfull. Withi this patch all below combination
build.

1)

2)
CONFIG_HMM_MIRROR=y

3)
CONFIG_DEVICE_PRIVATE=y

4)
CONFIG_DEVICE_PUBLIC=y

5)
CONFIG_HMM_MIRROR=y
CONFIG_DEVICE_PUBLIC=y

6)
CONFIG_HMM_MIRROR=y
CONFIG_DEVICE_PRIVATE=y

7)
CONFIG_DEVICE_PRIVATE=y
CONFIG_DEVICE_PUBLIC=y

8)
CONFIG_HMM_MIRROR=y
CONFIG_DEVICE_PRIVATE=y
CONFIG_DEVICE_PUBLIC=y

Link: http://lkml.kernel.org/r/20170826002149.20919-1-jglisse@redhat.com
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jérôme Glisse <jglisse@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jérôme Glisse and committed by
Linus Torvalds
de540a97 6b368cd4

+1 -2
+1 -2
include/linux/hmm.h
··· 498 498 struct hmm_device *hmm_device_new(void *drvdata); 499 499 void hmm_device_put(struct hmm_device *hmm_device); 500 500 #endif /* CONFIG_DEVICE_PRIVATE || CONFIG_DEVICE_PUBLIC */ 501 - 501 + #endif /* IS_ENABLED(CONFIG_HMM) */ 502 502 503 503 /* Below are for HMM internal use only! Not to be used by device driver! */ 504 504 #if IS_ENABLED(CONFIG_HMM_MIRROR) ··· 517 517 #else /* IS_ENABLED(CONFIG_HMM) */ 518 518 static inline void hmm_mm_destroy(struct mm_struct *mm) {} 519 519 static inline void hmm_mm_init(struct mm_struct *mm) {} 520 - #endif /* IS_ENABLED(CONFIG_HMM) */ 521 520 #endif /* LINUX_HMM_H */