diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
commit | 57f0f512b273f60d52568b8c6b77e17f5636edc0 (patch) | |
tree | 5e910f0e82173f4ef4f51111366a3f1299037a7b /include/linux/dcookies.h |
Initial import
Diffstat (limited to 'include/linux/dcookies.h')
-rw-r--r-- | include/linux/dcookies.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/include/linux/dcookies.h b/include/linux/dcookies.h new file mode 100644 index 000000000..5ac3bdd5c --- /dev/null +++ b/include/linux/dcookies.h @@ -0,0 +1,68 @@ +/* + * dcookies.h + * + * Persistent cookie-path mappings + * + * Copyright 2002 John Levon <levon@movementarian.org> + */ + +#ifndef DCOOKIES_H +#define DCOOKIES_H + + +#ifdef CONFIG_PROFILING + +#include <linux/dcache.h> +#include <linux/types.h> + +struct dcookie_user; +struct path; + +/** + * dcookie_register - register a user of dcookies + * + * Register as a dcookie user. Returns %NULL on failure. + */ +struct dcookie_user * dcookie_register(void); + +/** + * dcookie_unregister - unregister a user of dcookies + * + * Unregister as a dcookie user. This may invalidate + * any dcookie values returned from get_dcookie(). + */ +void dcookie_unregister(struct dcookie_user * user); + +/** + * get_dcookie - acquire a dcookie + * + * Convert the given dentry/vfsmount pair into + * a cookie value. + * + * Returns -EINVAL if no living task has registered as a + * dcookie user. + * + * Returns 0 on success, with *cookie filled in + */ +int get_dcookie(struct path *path, unsigned long *cookie); + +#else + +static inline struct dcookie_user * dcookie_register(void) +{ + return NULL; +} + +static inline void dcookie_unregister(struct dcookie_user * user) +{ + return; +} + +static inline int get_dcookie(struct path *path, unsigned long *cookie) +{ + return -ENOSYS; +} + +#endif /* CONFIG_PROFILING */ + +#endif /* DCOOKIES_H */ |