All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] idr-fix-idr_replaces-returned-error-code.patch removed from -mm tree
@ 2014-06-09 19:35 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2014-06-09 19:35 UTC (permalink / raw)
  To: mm-commits, tj, laijs

Subject: [merged] idr-fix-idr_replaces-returned-error-code.patch removed from -mm tree
To: laijs@cn.fujitsu.com,tj@kernel.org,mm-commits@vger.kernel.org
From: akpm@linux-foundation.org
Date: Mon, 09 Jun 2014 12:35:12 -0700


The patch titled
     Subject: idr: fix idr_replace()'s returned error code
has been removed from the -mm tree.  Its filename was
     idr-fix-idr_replaces-returned-error-code.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Lai Jiangshan <laijs@cn.fujitsu.com>
Subject: idr: fix idr_replace()'s returned error code

When the smaller id is not found, idr_replace() returns -ENOENT.  But when
the id is bigger enough, idr_replace() returns -EINVAL, actually there is
no difference between these two kinds of ids.

These are all unallocated id, the return values of the idr_replace() for
these ids should be the same: -ENOENT.

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 lib/idr.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN lib/idr.c~idr-fix-idr_replaces-returned-error-code lib/idr.c
--- a/lib/idr.c~idr-fix-idr_replaces-returned-error-code
+++ a/lib/idr.c
@@ -814,10 +814,10 @@ void *idr_replace(struct idr *idp, void
 
 	p = idp->top;
 	if (!p)
-		return ERR_PTR(-EINVAL);
+		return ERR_PTR(-ENOENT);
 
 	if (id > idr_max(p->layer + 1))
-		return ERR_PTR(-EINVAL);
+		return ERR_PTR(-ENOENT);
 
 	n = p->layer * IDR_BITS;
 	while ((n > 0) && p) {
_

Patches currently in -mm which might be from laijs@cn.fujitsu.com are

origin.patch
linux-next.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-06-09 19:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-09 19:35 [merged] idr-fix-idr_replaces-returned-error-code.patch removed from -mm tree akpm

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.