From a9f407b9a642cc99f1117c263e1cd05b5eb4a729 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Wed, 2 Nov 2016 14:07:53 +0100 Subject: btrfs-progs: send: cleanup, rename some variables in dump_thread Signed-off-by: David Sterba --- cmds-send.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'cmds-send.c') diff --git a/cmds-send.c b/cmds-send.c index 5fe87899..0c33298a 100644 --- a/cmds-send.c +++ b/cmds-send.c @@ -222,16 +222,16 @@ out: return ret; } -static void *dump_thread(void *arg_) +static void *dump_thread(void *arg) { int ret; - struct btrfs_send *s = (struct btrfs_send*)arg_; + struct btrfs_send *sctx = (struct btrfs_send*)arg; char buf[SEND_BUFFER_SIZE]; while (1) { ssize_t rbytes; - rbytes = read(s->send_fd, buf, sizeof(buf)); + rbytes = read(sctx->send_fd, buf, sizeof(buf)); if (rbytes < 0) { ret = -errno; error("failed to read stream from kernel: %s\n", @@ -242,15 +242,14 @@ static void *dump_thread(void *arg_) ret = 0; goto out; } - ret = write_buf(s->dump_fd, buf, rbytes); + ret = write_buf(sctx->dump_fd, buf, rbytes); if (ret < 0) goto out; } out: - if (ret < 0) { + if (ret < 0) exit(-ret); - } return ERR_PTR(ret); } -- cgit v1.2.3