All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs/dax: Convert to use vmf_error()
@ 2019-01-04 19:24 Souptick Joarder
  2019-01-14  4:28 ` Souptick Joarder
  2019-01-14  8:58 ` Jan Kara
  0 siblings, 2 replies; 6+ messages in thread
From: Souptick Joarder @ 2019-01-04 19:24 UTC (permalink / raw)
  To: willy, zwisler, jack, viro; +Cc: linux-fsdevel, linux-kernel

This code is converted to use vmf_error().

Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com>
---
 fs/dax.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/fs/dax.c b/fs/dax.c
index 48132ec..ed39161 100644
--- a/fs/dax.c
+++ b/fs/dax.c
@@ -1220,9 +1220,7 @@ static vm_fault_t dax_fault_return(int error)
 {
 	if (error == 0)
 		return VM_FAULT_NOPAGE;
-	if (error == -ENOMEM)
-		return VM_FAULT_OOM;
-	return VM_FAULT_SIGBUS;
+	return vmf_error(error);
 }
 
 /*
-- 
1.9.1


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

end of thread, other threads:[~2019-02-05  2:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-04 19:24 [PATCH] fs/dax: Convert to use vmf_error() Souptick Joarder
2019-01-14  4:28 ` Souptick Joarder
2019-01-14  8:58 ` Jan Kara
2019-01-14 22:30   ` Dan Williams
2019-02-05  2:33     ` Souptick Joarder
2019-02-05  2:42       ` Dan Williams

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.