summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2020-02-21 09:56:19 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2020-03-21 15:31:20 +0100
commit67d52a29b577519933e6841c2fc0afb1654e6be3 (patch)
treec57498fd66723fb610d3543afea262200d6e3542
parent5cc8da1789227e7524907f5a9ed6883a12e2559c (diff)
backports: patch lib/refcount.c to make sparse happy
Upstream commit e1e5fc5c84336b1b4e1354895fffafa7b2524bd7 We're testing sparse, so don't want warnings here. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r--patches/lib-refcount.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/patches/lib-refcount.patch b/patches/lib-refcount.patch
index cca07cfb..0f63ec6a 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);