kref.h 2.5 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * kref.h - library routines for handling generic reference counted objects
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
 * Copyright (C) 2004 IBM Corp.
 *
 * based on kobject.h which was:
 * Copyright (C) 2002-2003 Patrick Mochel <mochel@osdl.org>
 * Copyright (C) 2002-2003 Open Source Development Labs
 *
 * This file is released under the GPLv2.
 *
 */

#ifndef _KREF_H_
#define _KREF_H_

#include <linux/types.h>
P
Peter Zijlstra 已提交
19
#include <linux/slab.h>
L
Linus Torvalds 已提交
20 21 22 23 24

struct kref {
	atomic_t refcount;
};

P
Peter Zijlstra 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/**
 * kref_init - initialize object.
 * @kref: object in question.
 */
static inline void kref_init(struct kref *kref)
{
	atomic_set(&kref->refcount, 1);
}

/**
 * kref_get - increment refcount for object.
 * @kref: object.
 */
static inline void kref_get(struct kref *kref)
{
	WARN_ON(!atomic_read(&kref->refcount));
	atomic_inc(&kref->refcount);
}

/**
45
 * kref_sub - subtract a number of refcounts for object.
P
Peter Zijlstra 已提交
46
 * @kref: object.
47
 * @count: Number of recounts to subtract.
P
Peter Zijlstra 已提交
48 49 50 51 52
 * @release: pointer to the function that will clean up the object when the
 *	     last reference to the object is released.
 *	     This pointer is required, and it is not acceptable to pass kfree
 *	     in as this function.
 *
53
 * Subtract @count from the refcount, and if 0, call release().
P
Peter Zijlstra 已提交
54 55 56 57 58
 * Return 1 if the object was removed, otherwise return 0.  Beware, if this
 * function returns 0, you still can not count on the kref from remaining in
 * memory.  Only use the return value if you want to see if the kref is now
 * gone, not present.
 */
59 60
static inline int kref_sub(struct kref *kref, unsigned int count,
	     void (*release)(struct kref *kref))
P
Peter Zijlstra 已提交
61 62 63 64
{
	WARN_ON(release == NULL);
	WARN_ON(release == (void (*)(struct kref *))kfree);

65
	if (atomic_sub_and_test((int) count, &kref->refcount)) {
P
Peter Zijlstra 已提交
66 67 68 69 70 71 72
		release(kref);
		return 1;
	}
	return 0;
}

/**
73
 * kref_put - decrement refcount for object.
P
Peter Zijlstra 已提交
74 75 76 77 78 79
 * @kref: object.
 * @release: pointer to the function that will clean up the object when the
 *	     last reference to the object is released.
 *	     This pointer is required, and it is not acceptable to pass kfree
 *	     in as this function.
 *
80
 * Decrement the refcount, and if 0, call release().
P
Peter Zijlstra 已提交
81 82 83 84 85
 * Return 1 if the object was removed, otherwise return 0.  Beware, if this
 * function returns 0, you still can not count on the kref from remaining in
 * memory.  Only use the return value if you want to see if the kref is now
 * gone, not present.
 */
86
static inline int kref_put(struct kref *kref, void (*release)(struct kref *kref))
P
Peter Zijlstra 已提交
87
{
88
	return kref_sub(kref, 1, release);
P
Peter Zijlstra 已提交
89
}
L
Linus Torvalds 已提交
90
#endif /* _KREF_H_ */