]> git.proxmox.com Git - mirror_spl-debian.git/blobdiff - include/sys/sid.h
New upstream version 0.7.8
[mirror_spl-debian.git] / include / sys / sid.h
index 8ee5d0727772e3223cecc910da10ea9c3a84ee9b..a54d78b500932aaf2f70f5c2bdf4c4b6c6e96b16 100644 (file)
@@ -23,7 +23,7 @@
 \*****************************************************************************/
 
 #ifndef _SPL_SID_H
-#define _SPL_SID_H
+#define        _SPL_SID_H
 
 typedef struct ksiddomain {
        char            *kd_name;
@@ -41,21 +41,21 @@ typedef int ksid_t;
 static inline ksiddomain_t *
 ksid_lookupdomain(const char *dom)
 {
-        ksiddomain_t *kd;
+       ksiddomain_t *kd;
        int len = strlen(dom);
 
-        kd = kmem_zalloc(sizeof(ksiddomain_t), KM_SLEEP);
-        kd->kd_name = kmem_zalloc(len + 1, KM_SLEEP);
+       kd = kmem_zalloc(sizeof (ksiddomain_t), KM_SLEEP);
+       kd->kd_name = kmem_zalloc(len + 1, KM_SLEEP);
        memcpy(kd->kd_name, dom, len);
 
-        return (kd);
+       return (kd);
 }
 
 static inline void
 ksiddomain_rele(ksiddomain_t *ksid)
 {
        kmem_free(ksid->kd_name, strlen(ksid->kd_name) + 1);
-        kmem_free(ksid, sizeof(ksiddomain_t));
+       kmem_free(ksid, sizeof (ksiddomain_t));
 }
 
 #endif /* _SPL_SID_H */