All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Fabio M. De Francesco" <fmdefrancesco@gmail.com>
To: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christoph Hellwig <hch@infradead.org>,
	linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	Ira Weiny <ira.weiny@intel.com>,
	Dan Carpenter <error27@gmail.com>
Subject: Re: [PATCH v2 2/4] fs/sysv: Change the signature of dir_get_page()
Date: Thu, 12 Jan 2023 21:15:24 +0100	[thread overview]
Message-ID: <4773794.GXAFRqVoOG@suse> (raw)
In-Reply-To: <Y74gRx6jLf2RHgdq@ZenIV>

On mercoledì 11 gennaio 2023 03:34:47 CET Al Viro wrote:
> On Mon, Jan 09, 2023 at 06:06:37PM +0100, Fabio M. De Francesco wrote:
> > -struct sysv_dir_entry * sysv_dotdot (struct inode *dir, struct page **p)
> > +struct sysv_dir_entry *sysv_dotdot(struct inode *dir, struct page **p)
> > 
> >  {
> > 
> > -	struct page *page = dir_get_page(dir, 0);
> > -	struct sysv_dir_entry *de = NULL;
> > +	struct page *page = NULL;
> > +	struct sysv_dir_entry *de = dir_get_page(dir, 0, &page);
> > 
> > -	if (!IS_ERR(page)) {
> > -		de = (struct sysv_dir_entry*) page_address(page) + 1;
> > +	if (!IS_ERR(de)) {
> > 
> >  		*p = page;
> > 
> > +		return (struct sysv_dir_entry *)page_address(page) + 1;
> > 
> >  	}
> > 
> > -	return de;
> > +	return NULL;
> > 
> >  }
> 
> Would be better off with
> 
> 	struct sysv_dir_entry *de = dir_get_page(dir, 0, p);
> 
> 	if (!IS_ERR(de))
> 		return de + 1;	// ".." is the second directory entry
> 	return NULL;
> 
> IMO...

I totally agree with you...

1) This comment is a good way to explain why we return "de + 1".
2) "*p = page" is redundant, so it's not necessary because we assign the out 
argument in dir_get_page() if and only if read_mapping_page() doesn't fail.

I will send v3 asap.

Thanks for your suggestions.

Fabio




  reply	other threads:[~2023-01-12 20:47 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-09 17:06 [PATCH v2 0/4] fs/sysv: Replace kmap() with kmap_local_page() Fabio M. De Francesco
2023-01-09 17:06 ` [PATCH v2 1/4] fs/sysv: Use the offset_in_page() helper Fabio M. De Francesco
2023-01-09 17:06 ` [PATCH v2 2/4] fs/sysv: Change the signature of dir_get_page() Fabio M. De Francesco
2023-01-11  2:34   ` Al Viro
2023-01-12 20:15     ` Fabio M. De Francesco [this message]
2023-01-09 17:06 ` [PATCH v2 3/4] fs/sysv: Use dir_put_page() in sysv_rename() Fabio M. De Francesco
2023-01-09 17:06 ` [PATCH v2 4/4] fs/sysv: Replace kmap() with kmap_local_page() Fabio M. De Francesco

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=4773794.GXAFRqVoOG@suse \
    --to=fmdefrancesco@gmail.com \
    --cc=error27@gmail.com \
    --cc=hch@infradead.org \
    --cc=ira.weiny@intel.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    /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.