[patch 5/9] uml: fix hppfs error path

From: blaisorblade
Date: Wed Jul 13 2005 - 13:08:54 EST



Fix the error message to refer to the error code, i.e. err, not count, plus
add some cosmetical fixes.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx>
---

linux-2.6.git-broken-paolo/fs/hppfs/hppfs_kern.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff -puN fs/hppfs/hppfs_kern.c~uml-hppfs-error-case fs/hppfs/hppfs_kern.c
--- linux-2.6.git-broken/fs/hppfs/hppfs_kern.c~uml-hppfs-error-case 2005-07-13 19:41:36.000000000 +0200
+++ linux-2.6.git-broken-paolo/fs/hppfs/hppfs_kern.c 2005-07-13 19:41:36.000000000 +0200
@@ -233,7 +233,7 @@ static ssize_t read_proc(struct file *fi
set_fs(USER_DS);

if(ppos) *ppos = file->f_pos;
- return(n);
+ return n;
}

static ssize_t hppfs_read_file(int fd, char *buf, ssize_t count)
@@ -254,7 +254,7 @@ static ssize_t hppfs_read_file(int fd, c
err = os_read_file(fd, new_buf, cur);
if(err < 0){
printk("hppfs_read : read failed, errno = %d\n",
- count);
+ err);
n = err;
goto out_free;
}
@@ -271,7 +271,7 @@ static ssize_t hppfs_read_file(int fd, c
out_free:
kfree(new_buf);
out:
- return(n);
+ return n;
}

static ssize_t hppfs_read(struct file *file, char *buf, size_t count,
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/