[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <E1OHw5Q-00020q-Dk@pomaz-ex.szeredi.hu>
Date: Fri, 28 May 2010 11:42:40 +0200
From: Miklos Szeredi <miklos@...redi.hu>
To: Changli Gao <xiaosuo@...il.com>
CC: axboe@...nel.dk, viro@...iv.linux.org.uk, mszeredi@...e.cz,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
xiaosuo@...il.com
Subject: Re: [PATCH v2 4/4] splice: fix updating sd->pos wrongly
On Wed, 26 May 2010, Changli Gao wrote:
> fix updating sd->pos wrongly.
>
> In error path, we don't need to updating sd->pos, if the file isn't seekable.
This patch is nonsense. Why should we handle sd->pos != 0 case
differently?
>
> Signed-off-by: Changli Gao <xiaosuo@...il.com>
> ----
> fs/splice.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
> diff --git a/fs/splice.c b/fs/splice.c
> index 57172ca..c69b241 100644
> --- a/fs/splice.c
> +++ b/fs/splice.c
> @@ -1185,7 +1185,8 @@ ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
> sd->pos = pos;
>
> if (ret < read_len) {
> - sd->pos = prev_pos + ret;
> + if (sd->pos)
> + sd->pos = prev_pos + ret;
> goto out_release;
> }
> }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists