Commit 6ae965cd authored by Daniel Walker's avatar Daniel Walker Committed by Linus Torvalds

whitespace fixes: process accounting

Lots of converting spaces to tabs.
Signed-off-by: default avatarDaniel Walker <dwalker@mvista.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6fa6c3b1
...@@ -329,16 +329,16 @@ static comp_t encode_comp_t(unsigned long value) ...@@ -329,16 +329,16 @@ static comp_t encode_comp_t(unsigned long value)
} }
/* /*
* If we need to round up, do it (and handle overflow correctly). * If we need to round up, do it (and handle overflow correctly).
*/ */
if (rnd && (++value > MAXFRACT)) { if (rnd && (++value > MAXFRACT)) {
value >>= EXPSIZE; value >>= EXPSIZE;
exp++; exp++;
} }
/* /*
* Clean it up and polish it off. * Clean it up and polish it off.
*/ */
exp <<= MANTSIZE; /* Shift the exponent into place */ exp <<= MANTSIZE; /* Shift the exponent into place */
exp += value; /* and add on the mantissa. */ exp += value; /* and add on the mantissa. */
return exp; return exp;
...@@ -361,30 +361,30 @@ static comp_t encode_comp_t(unsigned long value) ...@@ -361,30 +361,30 @@ static comp_t encode_comp_t(unsigned long value)
static comp2_t encode_comp2_t(u64 value) static comp2_t encode_comp2_t(u64 value)
{ {
int exp, rnd; int exp, rnd;
exp = (value > (MAXFRACT2>>1)); exp = (value > (MAXFRACT2>>1));
rnd = 0; rnd = 0;
while (value > MAXFRACT2) { while (value > MAXFRACT2) {
rnd = value & 1; rnd = value & 1;
value >>= 1; value >>= 1;
exp++; exp++;
} }
/* /*
* If we need to round up, do it (and handle overflow correctly). * If we need to round up, do it (and handle overflow correctly).
*/ */
if (rnd && (++value > MAXFRACT2)) { if (rnd && (++value > MAXFRACT2)) {
value >>= 1; value >>= 1;
exp++; exp++;
} }
if (exp > MAXEXP2) { if (exp > MAXEXP2) {
/* Overflow. Return largest representable number instead. */ /* Overflow. Return largest representable number instead. */
return (1ul << (MANTSIZE2+EXPSIZE2-1)) - 1; return (1ul << (MANTSIZE2+EXPSIZE2-1)) - 1;
} else { } else {
return (value & (MAXFRACT2>>1)) | (exp << (MANTSIZE2-1)); return (value & (MAXFRACT2>>1)) | (exp << (MANTSIZE2-1));
} }
} }
#endif #endif
...@@ -501,14 +501,14 @@ static void do_acct_process(struct file *file) ...@@ -501,14 +501,14 @@ static void do_acct_process(struct file *file)
ac.ac_swaps = encode_comp_t(0); ac.ac_swaps = encode_comp_t(0);
/* /*
* Kernel segment override to datasegment and write it * Kernel segment override to datasegment and write it
* to the accounting file. * to the accounting file.
*/ */
fs = get_fs(); fs = get_fs();
set_fs(KERNEL_DS); set_fs(KERNEL_DS);
/* /*
* Accounting records are not subject to resource limits. * Accounting records are not subject to resource limits.
*/ */
flim = current->signal->rlim[RLIMIT_FSIZE].rlim_cur; flim = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY; current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
file->f_op->write(file, (char *)&ac, file->f_op->write(file, (char *)&ac,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment