nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / kobj_map.h
1 /*
2 * kobj_map.h
3 */
4
5 #ifndef _KOBJ_MAP_H_
6 #define _KOBJ_MAP_H_
7
8 #include <linux/mutex.h>
9
10 typedef struct kobject *kobj_probe_t(dev_t, int *, void *);
11 struct kobj_map;
12
13 int kobj_map(struct kobj_map *, dev_t, unsigned long, struct module *,
14 kobj_probe_t *, int (*)(dev_t, void *), void *);
15 void kobj_unmap(struct kobj_map *, dev_t, unsigned long);
16 struct kobject *kobj_lookup(struct kobj_map *, dev_t, int *);
17 struct kobj_map *kobj_map_init(kobj_probe_t *, struct mutex *);
18
19 #endif /* _KOBJ_MAP_H_ */