lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 30 May 2013 16:25:11 -0500 From: Eric Sandeen <sandeen@...deen.net> To: Jan Kara <jack@...e.cz> CC: xfs@....sgi.com, linux-ext4@...r.kernel.org Subject: Re: [PATCH 2/3 v2] 285: Fix indentation of do_pwrite On 5/30/13 4:21 PM, Jan Kara wrote: > Signed-off-by: Jan Kara <jack@...e.cz> > --- > src/seek_sanity_test.c | 26 +++++++++++++------------- > 1 file changed, 13 insertions(+), 13 deletions(-) mmm, whitespace. Reviewed-by: Eric Sandeen <sandeen@...hat.com> > diff --git a/src/seek_sanity_test.c b/src/seek_sanity_test.c > index eec6903..748eec2 100644 > --- a/src/seek_sanity_test.c > +++ b/src/seek_sanity_test.c > @@ -120,19 +120,19 @@ static int do_sync_dirty_pages(int fd, off64_t offset, off64_t nbytes) > > static ssize_t do_pwrite(int fd, const void *buf, size_t count, off_t offset) > { > - ssize_t ret, written = 0; > - > - while (count > written) { > - ret = pwrite(fd, buf + written, count - written, offset + written); > - if (ret < 0) { > - fprintf(stderr, " ERROR %d: Failed to write %ld " > - "bytes\n", errno, (long)count); > - return ret; > - } > - written += ret; > - } > - > - return 0; > + ssize_t ret, written = 0; > + > + while (count > written) { > + ret = pwrite(fd, buf + written, count - written, offset + written); > + if (ret < 0) { > + fprintf(stderr, " ERROR %d: Failed to write %ld " > + "bytes\n", errno, (long)count); > + return ret; > + } > + written += ret; > + } > + > + return 0; > } > > #define do_close(x) do { if ((x) > -1) close(x); } while(0); > -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists