]> git.baikalelectronics.ru Git - kernel.git/commit
x86/init: fix build with CONFIG_SWAP=n
authorVlastimil Babka <vbabka@suse.cz>
Tue, 14 Aug 2018 18:50:47 +0000 (20:50 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 14 Aug 2018 18:59:01 +0000 (11:59 -0700)
commit613a86af3b513b1b6898d9f4354139c3719db00e
treedb584b7bb4de0b73424f99f736610eb54a9b0259
parent44d8915e86b4e79e045623d4a14e66f8e2d63b85
x86/init: fix build with CONFIG_SWAP=n

The introduction of generic_max_swapfile_size and arch-specific versions has
broken linking on x86 with CONFIG_SWAP=n due to undefined reference to
'generic_max_swapfile_size'. Fix it by compiling the x86-specific
max_swapfile_size() only with CONFIG_SWAP=y.

Reported-by: Tomas Pruzina <pruzinat@gmail.com>
Fixes: 3ca54ae491e6 ("x86/speculation/l1tf: Limit swap file size to MAX_PA/2")
Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Cc: stable@vger.kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/x86/mm/init.c