ChangeSet 1.2231.1.58, 2005/03/28 19:32:48-08:00, [EMAIL PROTECTED]

        [PATCH] x86_64: Fix indentation in vsyscall.c. No functional changes.
        
        Fix indentation in vsyscall.c.  No functional changes.  Needed for 
followup
        patches.
        
        Signed-off-by: Andi Kleen <[EMAIL PROTECTED]>
        Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
        Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>



 vsyscall.c |   24 +++++++++++-------------
 1 files changed, 11 insertions(+), 13 deletions(-)


diff -Nru a/arch/x86_64/kernel/vsyscall.c b/arch/x86_64/kernel/vsyscall.c
--- a/arch/x86_64/kernel/vsyscall.c     2005-03-28 21:19:14 -08:00
+++ b/arch/x86_64/kernel/vsyscall.c     2005-03-28 21:19:14 -08:00
@@ -62,8 +62,7 @@
        time_t __sec;
 
        __sec = tv->tv_usec / 1000000;
-       if (__sec)
-       {
+       if (__sec) {
                tv->tv_usec %= 1000000;
                tv->tv_sec += __sec;
        }
@@ -84,10 +83,11 @@
                if (__vxtime.mode == VXTIME_TSC) {
                        sync_core();
                        rdtscll(t);
-                       if (t < __vxtime.last_tsc) t = __vxtime.last_tsc;
+                       if (t < __vxtime.last_tsc)
+                               t = __vxtime.last_tsc;
                        usec += ((t - __vxtime.last_tsc) *
                                 __vxtime.tsc_quot) >> 32;
-                       /* See comment in x86_64 do_gettimeofday. */ 
+                       /* See comment in x86_64 do_gettimeofday. */
                } else {
                        usec += ((readl((void *)fix_to_virt(VSYSCALL_HPET) + 
0xf0) -
                                  __vxtime.last) * __vxtime.quot) >> 32;
@@ -101,14 +101,13 @@
 /* RED-PEN may want to readd seq locking, but then the variable should be 
write-once. */
 static force_inline void do_get_tz(struct timezone * tz)
 {
-               *tz = __sys_tz;
+       *tz = __sys_tz;
 }
 
-
 static force_inline int gettimeofday(struct timeval *tv, struct timezone *tz)
 {
        int ret;
-       asm volatile("syscall" 
+       asm volatile("syscall"
                : "=a" (ret)
                : "0" (__NR_gettimeofday),"D" (tv),"S" (tz) : __syscall_clobber 
);
        return ret;
@@ -117,7 +116,7 @@
 static force_inline long time_syscall(long *t)
 {
        long secs;
-       asm volatile("syscall" 
+       asm volatile("syscall"
                : "=a" (secs)
                : "0" (__NR_time),"D" (t) : __syscall_clobber);
        return secs;
@@ -126,7 +125,7 @@
 static int __vsyscall(0) vgettimeofday(struct timeval * tv, struct timezone * 
tz)
 {
        if (unlikely(!__sysctl_vsyscall))
-       return gettimeofday(tv,tz); 
+               return gettimeofday(tv,tz);
        if (tv)
                do_vgettimeofday(tv);
        if (tz)
@@ -153,7 +152,6 @@
 static long __vsyscall(3) venosys_1(void)
 {
        return -ENOSYS;
-
 }
 
 static void __init map_vsyscall(void)
@@ -166,12 +164,12 @@
 
 static int __init vsyscall_init(void)
 {
-        BUG_ON(((unsigned long) &vgettimeofday != 
-                     VSYSCALL_ADDR(__NR_vgettimeofday)));
+       BUG_ON(((unsigned long) &vgettimeofday !=
+                       VSYSCALL_ADDR(__NR_vgettimeofday)));
        BUG_ON((unsigned long) &vtime != VSYSCALL_ADDR(__NR_vtime));
        BUG_ON((VSYSCALL_ADDR(0) != __fix_to_virt(VSYSCALL_FIRST_PAGE)));
        map_vsyscall();
-       sysctl_vsyscall = 1; 
+       sysctl_vsyscall = 1;
 
        return 0;
 }
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to