linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tmpfs: Disallow CONFIG_TMPFS_INODE64 on s390
@ 2021-02-05 23:06 Seth Forshee
  2021-02-06  0:05 ` Andrew Morton
  2021-02-07 14:48 ` Kirill A. Shutemov
  0 siblings, 2 replies; 8+ messages in thread
From: Seth Forshee @ 2021-02-05 23:06 UTC (permalink / raw)
  To: Andrew Morton, Hugh Dickins
  Cc: Chris Down, Amir Goldstein, Heiko Carstens, Vasily Gorbik,
	Christian Borntraeger, linux-mm, linux-s390, linux-kernel

This feature requires ino_t be 64-bits, which is true for every
64-bit architecture but s390, so prevent this option from being
selected there.

Fixes: ea3271f7196c ("tmpfs: support 64-bit inums per-sb")
Cc: <stable@vger.kernel.org> # v5.9+
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
---
 fs/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/Kconfig b/fs/Kconfig
index aa4c12282301..3347ec7bd837 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -203,7 +203,7 @@ config TMPFS_XATTR
 
 config TMPFS_INODE64
 	bool "Use 64-bit ino_t by default in tmpfs"
-	depends on TMPFS && 64BIT
+	depends on TMPFS && 64BIT && !S390
 	default n
 	help
 	  tmpfs has historically used only inode numbers as wide as an unsigned
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-02-08 22:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-05 23:06 [PATCH] tmpfs: Disallow CONFIG_TMPFS_INODE64 on s390 Seth Forshee
2021-02-06  0:05 ` Andrew Morton
2021-02-06  0:40   ` Chris Down
2021-02-07 12:17   ` Heiko Carstens
2021-02-08 22:50   ` Hugh Dickins
2021-02-07 14:48 ` Kirill A. Shutemov
2021-02-08 13:06   ` Seth Forshee
2021-02-08 17:48     ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).