All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dave Chinner <david@fromorbit.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	"Darrick J . Wong" <darrick.wong@oracle.com>,
	linux-nvdimm@lists.01.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 8/9] iomap: Convert iomap_write_end types
Date: Tue, 25 Aug 2020 11:33:51 +1000	[thread overview]
Message-ID: <20200825013351.GK12131@dread.disaster.area> (raw)
In-Reply-To: <20200825010605.GJ17456@casper.infradead.org>

On Tue, Aug 25, 2020 at 02:06:05AM +0100, Matthew Wilcox wrote:
> On Tue, Aug 25, 2020 at 10:12:23AM +1000, Dave Chinner wrote:
> > > -static int
> > > -__iomap_write_end(struct inode *inode, loff_t pos, unsigned len,
> > > -		unsigned copied, struct page *page)
> > > +static size_t __iomap_write_end(struct inode *inode, loff_t pos, size_t len,
> > > +		size_t copied, struct page *page)
> > >  {
> > 
> > Please leave the function declarations formatted the same way as
> > they currently are. They are done that way intentionally so it is
> > easy to grep for function definitions. Not to mention is't much
> > easier to read than when the function name is commingled into the
> > multiline paramener list like...
> 
> I understand that's true for XFS, but it's not true throughout the
> rest of the kernel. 

What other code does is irrelevant. I'm trying to maintain and
improve the consistency of the format used for the fs/iomap code.

> This file isn't even consistent:
> 
> buffered-io.c:static inline struct iomap_page *to_iomap_page(struct page *page)
> buffered-io.c:static inline bool iomap_block_needs_zeroing(struct inode
> buffered-io.c:static int iomap_zero(struct inode *inode, loff_t pos, unsigned offset,
> buffered-io.c:static void iomap_writepage_end_bio(struct bio *bio)
> buffered-io.c:static int __init iomap_init(void)
> 
> (i just grepped for ^static so there're other functions not covered by this)

5 functions that have that format, compared to 45 that do have the
formatting I asked you to retain. It think it's pretty clear which
way consistency lies here...

> The other fs/iomap/ files are equally inconsistent.

Inconsistency always occurs when multiple people modify the same
code. Often that's simply because reviewers haven't noticed the
inconsistency - it's certainly not intentional.

Saying "No, I'm going to make the code less consistent because it's
already slightly inconsistent" is, IMO, not a valid response to a
review request to conform to the existing code layout in that file,
especially if it improves the consistency of the code being
modified. That's really not negotiable....

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com
_______________________________________________
Linux-nvdimm mailing list -- linux-nvdimm@lists.01.org
To unsubscribe send an email to linux-nvdimm-leave@lists.01.org

WARNING: multiple messages have this Message-ID (diff)
From: Dave Chinner <david@fromorbit.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	"Darrick J . Wong" <darrick.wong@oracle.com>,
	linux-nvdimm@lists.01.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 8/9] iomap: Convert iomap_write_end types
Date: Tue, 25 Aug 2020 11:33:51 +1000	[thread overview]
Message-ID: <20200825013351.GK12131@dread.disaster.area> (raw)
In-Reply-To: <20200825010605.GJ17456@casper.infradead.org>

On Tue, Aug 25, 2020 at 02:06:05AM +0100, Matthew Wilcox wrote:
> On Tue, Aug 25, 2020 at 10:12:23AM +1000, Dave Chinner wrote:
> > > -static int
> > > -__iomap_write_end(struct inode *inode, loff_t pos, unsigned len,
> > > -		unsigned copied, struct page *page)
> > > +static size_t __iomap_write_end(struct inode *inode, loff_t pos, size_t len,
> > > +		size_t copied, struct page *page)
> > >  {
> > 
> > Please leave the function declarations formatted the same way as
> > they currently are. They are done that way intentionally so it is
> > easy to grep for function definitions. Not to mention is't much
> > easier to read than when the function name is commingled into the
> > multiline paramener list like...
> 
> I understand that's true for XFS, but it's not true throughout the
> rest of the kernel. 

What other code does is irrelevant. I'm trying to maintain and
improve the consistency of the format used for the fs/iomap code.

> This file isn't even consistent:
> 
> buffered-io.c:static inline struct iomap_page *to_iomap_page(struct page *page)
> buffered-io.c:static inline bool iomap_block_needs_zeroing(struct inode
> buffered-io.c:static int iomap_zero(struct inode *inode, loff_t pos, unsigned offset,
> buffered-io.c:static void iomap_writepage_end_bio(struct bio *bio)
> buffered-io.c:static int __init iomap_init(void)
> 
> (i just grepped for ^static so there're other functions not covered by this)

5 functions that have that format, compared to 45 that do have the
formatting I asked you to retain. It think it's pretty clear which
way consistency lies here...

> The other fs/iomap/ files are equally inconsistent.

Inconsistency always occurs when multiple people modify the same
code. Often that's simply because reviewers haven't noticed the
inconsistency - it's certainly not intentional.

Saying "No, I'm going to make the code less consistent because it's
already slightly inconsistent" is, IMO, not a valid response to a
review request to conform to the existing code layout in that file,
especially if it improves the consistency of the code being
modified. That's really not negotiable....

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

  reply	other threads:[~2020-08-25  1:36 UTC|newest]

Thread overview: 83+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-24 14:55 [PATCH 0/9] THP iomap patches for 5.10 Matthew Wilcox (Oracle)
2020-08-24 14:55 ` Matthew Wilcox (Oracle)
2020-08-24 14:55 ` [PATCH 1/9] iomap: Fix misplaced page flushing Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-24 23:51   ` Dave Chinner
2020-08-24 23:51     ` Dave Chinner
2020-08-25 20:47   ` Darrick J. Wong
2020-08-25 20:47     ` Darrick J. Wong
2020-08-27  8:24   ` Christoph Hellwig
2020-08-27  8:24     ` Christoph Hellwig
2020-08-24 14:55 ` [PATCH 2/9] fs: Introduce i_blocks_per_page Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-24 23:55   ` Dave Chinner
2020-08-24 23:55     ` Dave Chinner
2020-08-25 20:49   ` Darrick J. Wong
2020-08-25 20:49     ` Darrick J. Wong
2020-08-25 22:21     ` Dave Chinner
2020-08-25 22:21       ` Dave Chinner
2020-08-24 14:55 ` [PATCH 3/9] iomap: Use kzalloc to allocate iomap_page Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-24 23:56   ` Dave Chinner
2020-08-24 23:56     ` Dave Chinner
2020-08-25 20:49   ` Darrick J. Wong
2020-08-25 20:49     ` Darrick J. Wong
2020-08-24 14:55 ` [PATCH 4/9] iomap: Use bitmap ops to set uptodate bits Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-24 23:56   ` Dave Chinner
2020-08-24 23:56     ` Dave Chinner
2020-08-25 20:50   ` Darrick J. Wong
2020-08-25 20:50     ` Darrick J. Wong
2020-08-24 14:55 ` [PATCH 5/9] iomap: Support arbitrarily many blocks per page Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-24 23:59   ` Dave Chinner
2020-08-24 23:59     ` Dave Chinner
2020-08-25  0:22     ` Matthew Wilcox
2020-08-25  0:22       ` Matthew Wilcox
2020-08-25 21:02   ` Darrick J. Wong
2020-08-25 21:02     ` Darrick J. Wong
2020-08-26  2:26     ` Matthew Wilcox
2020-08-26  2:26       ` Matthew Wilcox
2020-08-26  3:32       ` Darrick J. Wong
2020-08-26  3:32         ` Darrick J. Wong
2020-08-27  8:26   ` Christoph Hellwig
2020-08-27  8:26     ` Christoph Hellwig
2020-08-24 14:55 ` [PATCH 6/9] iomap: Convert read_count to byte count Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-25  0:09   ` Dave Chinner
2020-08-25  0:09     ` Dave Chinner
2020-08-25 22:14     ` Darrick J. Wong
2020-08-25 22:14       ` Darrick J. Wong
2020-08-27  8:35   ` Christoph Hellwig
2020-08-27  8:35     ` Christoph Hellwig
2020-08-24 14:55 ` [PATCH 7/9] iomap: Convert write_count " Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-27  8:36   ` Christoph Hellwig
2020-08-27  8:36     ` Christoph Hellwig
2020-08-24 14:55 ` [PATCH 8/9] iomap: Convert iomap_write_end types Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-25  0:12   ` Dave Chinner
2020-08-25  0:12     ` Dave Chinner
2020-08-25  1:06     ` Matthew Wilcox
2020-08-25  1:06       ` Matthew Wilcox
2020-08-25  1:33       ` Dave Chinner [this message]
2020-08-25  1:33         ` Dave Chinner
2020-08-27  8:41   ` Christoph Hellwig
2020-08-27  8:41     ` Christoph Hellwig
2020-08-24 14:55 ` [PATCH 9/9] iomap: Change calling convention for zeroing Matthew Wilcox (Oracle)
2020-08-24 14:55   ` Matthew Wilcox (Oracle)
2020-08-25  0:27   ` Dave Chinner
2020-08-25  0:27     ` Dave Chinner
2020-08-25  3:26     ` Matthew Wilcox
2020-08-25  3:26       ` Matthew Wilcox
2020-08-25  3:35       ` Andreas Dilger
2020-08-25  4:27         ` Dave Chinner
2020-08-25  4:27           ` Dave Chinner
2020-08-25 12:40           ` Matthew Wilcox
2020-08-25 12:40             ` Matthew Wilcox
2020-08-25 22:05             ` Dave Chinner
2020-08-25 22:05               ` Dave Chinner
2020-08-25 22:23   ` Darrick J. Wong
2020-08-25 22:23     ` Darrick J. Wong
2020-08-27  8:39     ` Christoph Hellwig
2020-08-27  8:39       ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200825013351.GK12131@dread.disaster.area \
    --to=david@fromorbit.com \
    --cc=darrick.wong@oracle.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-nvdimm@lists.01.org \
    --cc=linux-xfs@vger.kernel.org \
    --cc=willy@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.