]> git.proxmox.com Git - mirror_spl-debian.git/blobdiff - include/sys/cred.h
Imported Upstream version 0.6.4.1
[mirror_spl-debian.git] / include / sys / cred.h
index 3ba5c141b966f7494cf5c23ecc513176366b263a..4f62b00fd7122b6de8973ef9c266a3befa8fa283 100644 (file)
 #include <sys/types.h>
 #include <sys/vfs.h>
 
-#ifdef HAVE_CRED_STRUCT
-
 typedef struct cred cred_t;
 
-#define kcred          ((cred_t *)(init_task.cred))
-#define CRED()         ((cred_t *)current_cred())
-
-#else
-
-typedef struct task_struct cred_t;
-
-#define kcred          ((cred_t *)&init_task)
-#define CRED()         ((cred_t *)current)
-
-#endif /* HAVE_CRED_STRUCT */
+#define        kcred           ((cred_t *)(init_task.cred))
+#define        CRED()          ((cred_t *)current_cred())
 
 #ifdef HAVE_KUIDGID_T
 
- /*
 * Linux 3.8+ uses typedefs to redefine uid_t and gid_t. We have to rename the
 * typedefs to recover the original types. We then can use them provided that
 * we are careful about translating from k{g,u}id_t to the original versions
 * and vice versa.
 */
- #define uid_t xuid_t
- #define gid_t xgid_t
- #include <linux/uidgid.h>
- #undef uid_t
- #undef gid_t
-
- #define KUID_TO_SUID(x) (__kuid_val(x))
- #define KGID_TO_SGID(x) (__kgid_val(x))
- #define SUID_TO_KUID(x) (KUIDT_INIT(x))
- #define SGID_TO_KGID(x) (KGIDT_INIT(x))
- #define KGIDP_TO_SGIDP(x) (&(x)->val)
+/*
+ * Linux 3.8+ uses typedefs to redefine uid_t and gid_t. We have to rename the
+ * typedefs to recover the original types. We then can use them provided that
+ * we are careful about translating from k{g,u}id_t to the original versions
+ * and vice versa.
+ */
+#define        uid_t           xuid_t
+#define        gid_t           xgid_t
+#include <linux/uidgid.h>
+#undef uid_t
+#undef gid_t
+
+#define        KUID_TO_SUID(x)         (__kuid_val(x))
+#define        KGID_TO_SGID(x)         (__kgid_val(x))
+#define        SUID_TO_KUID(x)         (KUIDT_INIT(x))
+#define        SGID_TO_KGID(x)         (KGIDT_INIT(x))
+#define        KGIDP_TO_SGIDP(x)       (&(x)->val)
 
 #else /* HAVE_KUIDGID_T */
 
- #define KUID_TO_SUID(x) (x)
- #define KGID_TO_SGID(x) (x)
- #define SUID_TO_KUID(x) (x)
- #define SGID_TO_KGID(x) (x)
- #define KGIDP_TO_SGIDP(x) (x)
+#define        KUID_TO_SUID(x)         (x)
+#define        KGID_TO_SGID(x)         (x)
+#define        SUID_TO_KUID(x)         (x)
+#define        SGID_TO_KGID(x)         (x)
+#define        KGIDP_TO_SGIDP(x)       (x)
 
 #endif /* HAVE_KUIDGID_T */