]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/timer.c
mmc_block: ensure all sectors that do not have errors are read
[linux-2.6-omap-h63xx.git] / kernel / timer.c
index dbd50fabe4c74ab241523fbf2b427c596e2838c5..566257d1dc10327818f787e5ca04559c05bd2566 100644 (file)
@@ -1192,25 +1192,25 @@ asmlinkage long sys_getppid(void)
 asmlinkage long sys_getuid(void)
 {
        /* Only we change this so SMP safe */
-       return current->uid;
+       return current_uid();
 }
 
 asmlinkage long sys_geteuid(void)
 {
        /* Only we change this so SMP safe */
-       return current->euid;
+       return current_euid();
 }
 
 asmlinkage long sys_getgid(void)
 {
        /* Only we change this so SMP safe */
-       return current->gid;
+       return current_gid();
 }
 
 asmlinkage long sys_getegid(void)
 {
        /* Only we change this so SMP safe */
-       return  current->egid;
+       return  current_egid();
 }
 
 #endif