linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] s390/kvm: avoid hypfs error message
@ 2022-06-07 12:33 Juergen Gross
  2022-06-20  6:03 ` Juergen Gross
  0 siblings, 1 reply; 6+ messages in thread
From: Juergen Gross @ 2022-06-07 12:33 UTC (permalink / raw)
  To: linux-s390, linux-kernel
  Cc: Juergen Gross, Heiko Carstens, Vasily Gorbik, Alexander Gordeev,
	Christian Borntraeger, Sven Schnelle

When booting under KVM the following error messages are issued:

hypfs.7f5705: The hardware system does not support hypfs
hypfs.7a79f0: Initialization of hypfs failed with rc=-61

While being documented, they can easily be avoided by bailing out of
hypfs_init() early in case of running as a KVM guest.

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 arch/s390/hypfs/inode.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c
index 5c97f48cea91..bdf078f3c641 100644
--- a/arch/s390/hypfs/inode.c
+++ b/arch/s390/hypfs/inode.c
@@ -464,6 +464,9 @@ static int __init hypfs_init(void)
 {
 	int rc;
 
+	if (MACHINE_IS_KVM)
+		return -ENODATA;
+
 	hypfs_dbfs_init();
 
 	if (hypfs_diag_init()) {
-- 
2.35.3


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

end of thread, other threads:[~2022-06-20  9:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-07 12:33 [PATCH] s390/kvm: avoid hypfs error message Juergen Gross
2022-06-20  6:03 ` Juergen Gross
2022-06-20  7:18   ` Christian Borntraeger
2022-06-20  9:19     ` Heiko Carstens
2022-06-20  9:25       ` Juergen Gross
2022-06-20  9:28         ` Christian Borntraeger

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).