Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1734276 > unrolled thread

[PATCH] idr: fix comment for idr_replace()

Started byEric Biggers <ebiggers3@gmail.com>
First post2017-09-18 18:30 +0200
Last post2017-09-18 18:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] idr: fix comment for idr_replace() Eric Biggers <ebiggers3@gmail.com> - 2017-09-18 18:30 +0200

#1734276 — [PATCH] idr: fix comment for idr_replace()

FromEric Biggers <ebiggers3@gmail.com>
Date2017-09-18 18:30 +0200
Subject[PATCH] idr: fix comment for idr_replace()
Message-ID<ur75L-b2-11@gated-at.bofh.it>
From: Eric Biggers <ebiggers@google.com>

idr_replace() returns the old value on success, not 0.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 lib/idr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/idr.c b/lib/idr.c
index f9adf4805fd7..edd9b2be1651 100644
--- a/lib/idr.c
+++ b/lib/idr.c
@@ -146,8 +146,8 @@ EXPORT_SYMBOL(idr_get_next_ext);
  * idr_alloc() and idr_remove() (as long as the ID being removed is not
  * the one being replaced!).
  *
- * Returns: 0 on success.  %-ENOENT indicates that @id was not found.
- * %-EINVAL indicates that @id or @ptr were not valid.
+ * Returns: the old value on success.  %-ENOENT indicates that @id was not
+ * found.  %-EINVAL indicates that @id or @ptr were not valid.
  */
 void *idr_replace(struct idr *idr, void *ptr, int id)
 {
-- 
2.14.1.690.gbb1197296e-goog

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web