sun-fix-whitespace

Whitespace fixes.

Signed-off-by: Ricardo M. Correia <Ricardo.M.Correia@Sun.COM>
This commit is contained in:
Ricardo M. Correia 2010-01-07 16:58:30 +00:00 committed by Brian Behlendorf
parent b520b14305
commit f7e8739c94
3 changed files with 11 additions and 11 deletions

View File

@ -167,7 +167,7 @@ list_prev(list_t *list, void *object)
static inline int
list_link_active(list_node_t *node)
{
return (node->next != LIST_POISON1) && (node->prev != LIST_POISON2);
return (node->next != LIST_POISON1) && (node->prev != LIST_POISON2);
}
static inline void

View File

@ -53,10 +53,10 @@ vcmn_err(int ce, const char *fmt, va_list ap)
{
char msg[MAXMSGLEN];
if (ce == CE_PANIC)
vpanic(fmt, ap);
if (ce == CE_PANIC)
vpanic(fmt, ap);
if (ce != CE_NOTE) {
if (ce != CE_NOTE) {
vsnprintf(msg, MAXMSGLEN - 1, fmt, ap);
if (fmt[0] == '!')
@ -64,7 +64,7 @@ vcmn_err(int ce, const char *fmt, va_list ap)
ce_prefix[ce], msg, ce_suffix[ce]);
else
CERROR("%s%s%s", ce_prefix[ce], msg, ce_suffix[ce]);
}
}
} /* vcmn_err() */
EXPORT_SYMBOL(vcmn_err);

View File

@ -102,9 +102,9 @@ int
vn_open(const char *path, uio_seg_t seg, int flags, int mode,
vnode_t **vpp, int x1, void *x2)
{
struct file *fp;
struct kstat stat;
int rc, saved_umask = 0;
struct file *fp;
struct kstat stat;
int rc, saved_umask = 0;
vnode_t *vp;
ENTRY;
@ -126,15 +126,15 @@ vn_open(const char *path, uio_seg_t seg, int flags, int mode,
if (flags & FCREAT)
saved_umask = xchg(&current->fs->umask, 0);
fp = filp_open(path, flags, mode);
fp = filp_open(path, flags, mode);
if (flags & FCREAT)
(void)xchg(&current->fs->umask, saved_umask);
if (IS_ERR(fp))
if (IS_ERR(fp))
RETURN(-PTR_ERR(fp));
rc = vfs_getattr(fp->f_vfsmnt, fp->f_dentry, &stat);
rc = vfs_getattr(fp->f_vfsmnt, fp->f_dentry, &stat);
if (rc) {
filp_close(fp, 0);
RETURN(-rc);