]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit - include/linux/percpu-refcount.h
percpu-refcount: add __must_check to percpu_ref_init() and don't use ACCESS_ONCE...
authorTejun Heo <tj@kernel.org>
Thu, 13 Jun 2013 03:52:01 +0000 (20:52 -0700)
committerTejun Heo <tj@kernel.org>
Thu, 13 Jun 2013 18:08:26 +0000 (11:08 -0700)
commitacac7883ee7bcc32476963bce7baf73d44574dd1
tree1ac595ff0f048b4beb74fd59819233b066c2d2f2
parentac899061a93250c28562f05ad94d5c74603415bc
percpu-refcount: add __must_check to percpu_ref_init() and don't use ACCESS_ONCE() in percpu_ref_kill_rcu()

Two small changes.

* Unlike most init functions, percpu_ref_init() allocates memory and
  may fail.  Let's mark it with __must_check in case the caller
  forgets.

* percpu_ref_kill_rcu() is unnecessarily using ACCESS_ONCE() to
  dereference @ref->pcpu_count, which can be misleading.  The pointer
  is guaranteed to be valid and visible and can't change underneath
  the function.  Drop ACCESS_ONCE().

Signed-off-by: Tejun Heo <tj@kernel.org>
include/linux/percpu-refcount.h
lib/percpu-refcount.c