All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] backports: patch lib/refcount.c to make sparse happy
@ 2020-02-14 13:24 Johannes Berg
  0 siblings, 0 replies; only message in thread
From: Johannes Berg @ 2020-02-14 13:24 UTC (permalink / raw)
  To: backports; +Cc: Johannes Berg

From: Johannes Berg <johannes.berg@intel.com>

We're testing sparse, so don't want warnings here.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 patches/lib-refcount.patch | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/patches/lib-refcount.patch b/patches/lib-refcount.patch
index cca07cfb7df2..0f63ec6aa6d9 100644
--- a/patches/lib-refcount.patch
+++ b/patches/lib-refcount.patch
@@ -10,3 +10,21 @@ index 5d0582a..8d108f9 100644
  
  /**
   * refcount_add_not_zero_checked - add a value to a refcount unless it is 0
+@@ -153,6 +153,8 @@ bool refcount_dec_and_lock(refcount_t *r, spinlock_t *lock)
+ 		return false;
+ 	}
+ 
++	__release(lock);
++
+ 	return true;
+ }
+ EXPORT_SYMBOL(refcount_dec_and_lock);
+@@ -182,6 +184,8 @@ bool refcount_dec_and_lock_irqsave(refcount_t *r, spinlock_t *lock,
+ 		return false;
+ 	}
+ 
++	__release(lock);
++
+ 	return true;
+ }
+ EXPORT_SYMBOL(refcount_dec_and_lock_irqsave);
-- 
2.24.1

--
To unsubscribe from this list: send the line "unsubscribe backports" in

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

only message in thread, other threads:[~2020-02-14 13:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-14 13:24 [PATCH] backports: patch lib/refcount.c to make sparse happy Johannes Berg

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.