/**
  * struct seccomp_filter - container for seccomp BPF programs
  *
- * @usage: reference count to manage the object lifetime.
- *         get/put helpers should be used when accessing an instance
- *         outside of a lifetime-guarded section.  In general, this
- *         is only needed for handling filters shared across tasks.
+ * @refs: Reference count to manage the object lifetime.
+ *       A filter's reference count is incremented for each directly
+ *       attached task, once for the dependent filter, and if
+ *       requested for the user notifier. When @refs reaches zero,
+ *       the filter can be freed.
  * @log: true if all actions except for SECCOMP_RET_ALLOW should be logged
  * @prev: points to a previously installed, or inherited, filter
  * @prog: the BPF program to evaluate
  * how namespaces work.
  *
  * seccomp_filter objects should never be modified after being attached
- * to a task_struct (other than @usage).
+ * to a task_struct (other than @refs).
  */
 struct seccomp_filter {
-       refcount_t usage;
+       refcount_t refs;
        bool log;
        struct seccomp_filter *prev;
        struct bpf_prog *prog;
                return ERR_PTR(ret);
        }
 
-       refcount_set(&sfilter->usage, 1);
+       refcount_set(&sfilter->refs, 1);
 
        return sfilter;
 }
 
 static void __get_seccomp_filter(struct seccomp_filter *filter)
 {
-       refcount_inc(&filter->usage);
+       refcount_inc(&filter->refs);
 }
 
 /* get_seccomp_filter - increments the reference count of the filter on @tsk */
 static void __put_seccomp_filter(struct seccomp_filter *orig)
 {
        /* Clean up single-reference branches iteratively. */
-       while (orig && refcount_dec_and_test(&orig->usage)) {
+       while (orig && refcount_dec_and_test(&orig->refs)) {
                struct seccomp_filter *freeme = orig;
                orig = orig->prev;
                seccomp_filter_free(freeme);