All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scatterlist: don't BUG when we can trivially return a proper error.
@ 2012-11-01 19:03 Nick Bowler
  2012-11-14 21:05 ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Nick Bowler @ 2012-11-01 19:03 UTC (permalink / raw)
  To: linux-kernel

There is absolutely no reason to crash the kernel when we have a
perfectly good return value already available to use for conveying
failure status.

Let's return an error code instead of crashing the kernel: that sounds
like a much better plan.

Signed-off-by: Nick Bowler <nbowler@elliptictech.com>
---
 lib/scatterlist.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/lib/scatterlist.c b/lib/scatterlist.c
index 3675452b23ca..11ecaf000696 100644
--- a/lib/scatterlist.c
+++ b/lib/scatterlist.c
@@ -248,7 +248,8 @@ int __sg_alloc_table(struct sg_table *table, unsigned int nents,
 	unsigned int left;
 
 #ifndef ARCH_HAS_SG_CHAIN
-	BUG_ON(nents > max_ents);
+	if (WARN_ON_ONCE(nents > max_ents))
+		return -E2BIG;
 #endif
 
 	memset(table, 0, sizeof(*table));
-- 
1.7.8.6


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

end of thread, other threads:[~2012-11-14 22:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-01 19:03 [PATCH] scatterlist: don't BUG when we can trivially return a proper error Nick Bowler
2012-11-14 21:05 ` Andrew Morton
2012-11-14 22:15   ` Nick Bowler
2012-11-14 22:27     ` richard -rw- weinberger
2012-11-14 22:30     ` Andrew Morton

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.