All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dave Chinner <david@fromorbit.com>
To: Michal Hocko <mhocko@kernel.org>
Cc: linux-mm@kvack.org, Peter Zijlstra <peterz@infradead.org>,
	"Darrick J. Wong" <darrick.wong@oracle.com>,
	xfs@oss.sgi.com, Qu Wenruo <quwenruo@cn.fujitsu.com>,
	Ingo Molnar <mingo@kernel.org>
Subject: Re: Xfs lockdep warning with for-dave-for-4.6 branch
Date: Thu, 23 Jun 2016 08:58:16 +1000	[thread overview]
Message-ID: <20160622225816.GY12670@dastard> (raw)
In-Reply-To: <20160622123822.GG9208@dhcp22.suse.cz>

On Wed, Jun 22, 2016 at 02:38:22PM +0200, Michal Hocko wrote:
> On Wed 22-06-16 11:03:20, Dave Chinner wrote:
> > On Tue, Jun 21, 2016 at 04:26:28PM +0200, Michal Hocko wrote:
> > > On Wed 15-06-16 17:21:54, Dave Chinner wrote:
> [...]
> > > > There are allocations outside transaction context which need to be
> > > > GFP_NOFS - this is what KM_NOFS was originally intended for.
> > > 
> > > Is it feasible to mark those by the scope NOFS api as well and drop
> > > the direct KM_NOFS usage? This should help to identify those that are
> > > lockdep only and use the annotation to prevent from the false positives.
> > 
> > I don't understand what you are suggesting here. This all started
> > because we use GFP_NOFS in a handful of places to shut up lockdep
> > and you didn't want us to use GFP_NOFS like that. Now it sounds to
> > me like you are advocating setting unconditional GFP_NOFS allocation
> > contexts for entire XFS code paths - whether it's necessary or
> > not - to avoid problems with lockdep false positives.
> 
> No, I meant only those paths which need GFP_NOFS for other than lockdep
> purposes would use the scope api.
> 
> Anyway, it seems that we are not getting closer to a desired solution
> here. Or I am not following it at least...
> 
> It seems that we have effectively two possibilities (from the
> MM/lockdep) POV. Either add an explicit API to disable the reclaim
> lockdep machinery for all allocation in a certain scope or a GFP mask
> to to achieve the same for a particular allocation. Which one would work
> better for the xfs usecase?

As I've said - if we annotate the XFS call sites appropriately (e.g.
KM_NOLOCKDEP rather than KM_NOFS), we don't care what lockdep
mechanism is used to turn off warnings as it will be wholly
encapsulated inside kmem_alloc() and friends.  This will end up
similar to how we are currently encapsulate the memalloc_noio_save()
wrappers in kmem_zalloc_large().

IOWs, it doesn't matter to XFS whether it be a GFP flag or a PF flag
here, because it's not going to be exposed to the higher level code.

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

WARNING: multiple messages have this Message-ID (diff)
From: Dave Chinner <david@fromorbit.com>
To: Michal Hocko <mhocko@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>,
	"Darrick J. Wong" <darrick.wong@oracle.com>,
	Qu Wenruo <quwenruo@cn.fujitsu.com>,
	xfs@oss.sgi.com, linux-mm@kvack.org,
	Ingo Molnar <mingo@kernel.org>
Subject: Re: Xfs lockdep warning with for-dave-for-4.6 branch
Date: Thu, 23 Jun 2016 08:58:16 +1000	[thread overview]
Message-ID: <20160622225816.GY12670@dastard> (raw)
In-Reply-To: <20160622123822.GG9208@dhcp22.suse.cz>

On Wed, Jun 22, 2016 at 02:38:22PM +0200, Michal Hocko wrote:
> On Wed 22-06-16 11:03:20, Dave Chinner wrote:
> > On Tue, Jun 21, 2016 at 04:26:28PM +0200, Michal Hocko wrote:
> > > On Wed 15-06-16 17:21:54, Dave Chinner wrote:
> [...]
> > > > There are allocations outside transaction context which need to be
> > > > GFP_NOFS - this is what KM_NOFS was originally intended for.
> > > 
> > > Is it feasible to mark those by the scope NOFS api as well and drop
> > > the direct KM_NOFS usage? This should help to identify those that are
> > > lockdep only and use the annotation to prevent from the false positives.
> > 
> > I don't understand what you are suggesting here. This all started
> > because we use GFP_NOFS in a handful of places to shut up lockdep
> > and you didn't want us to use GFP_NOFS like that. Now it sounds to
> > me like you are advocating setting unconditional GFP_NOFS allocation
> > contexts for entire XFS code paths - whether it's necessary or
> > not - to avoid problems with lockdep false positives.
> 
> No, I meant only those paths which need GFP_NOFS for other than lockdep
> purposes would use the scope api.
> 
> Anyway, it seems that we are not getting closer to a desired solution
> here. Or I am not following it at least...
> 
> It seems that we have effectively two possibilities (from the
> MM/lockdep) POV. Either add an explicit API to disable the reclaim
> lockdep machinery for all allocation in a certain scope or a GFP mask
> to to achieve the same for a particular allocation. Which one would work
> better for the xfs usecase?

As I've said - if we annotate the XFS call sites appropriately (e.g.
KM_NOLOCKDEP rather than KM_NOFS), we don't care what lockdep
mechanism is used to turn off warnings as it will be wholly
encapsulated inside kmem_alloc() and friends.  This will end up
similar to how we are currently encapsulate the memalloc_noio_save()
wrappers in kmem_zalloc_large().

IOWs, it doesn't matter to XFS whether it be a GFP flag or a PF flag
here, because it's not going to be exposed to the higher level code.

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2016-06-22 22:58 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-12  5:53 Xfs lockdep warning with for-dave-for-4.6 branch Qu Wenruo
2016-05-12  5:57 ` Darrick J. Wong
2016-05-12  8:03   ` Dave Chinner
2016-05-13 16:03     ` Michal Hocko
2016-05-13 16:03       ` Michal Hocko
2016-05-16 10:41       ` Peter Zijlstra
2016-05-16 10:41         ` Peter Zijlstra
2016-05-16 13:05         ` Michal Hocko
2016-05-16 13:05           ` Michal Hocko
2016-05-16 13:25           ` Peter Zijlstra
2016-05-16 13:25             ` Peter Zijlstra
2016-05-16 23:10             ` Dave Chinner
2016-05-16 23:10               ` Dave Chinner
2016-05-17 14:49               ` Peter Zijlstra
2016-05-17 14:49                 ` Peter Zijlstra
2016-05-17 22:35                 ` Dave Chinner
2016-05-17 22:35                   ` Dave Chinner
2016-05-18  7:20                   ` Peter Zijlstra
2016-05-18  7:20                     ` Peter Zijlstra
2016-05-18  8:25                     ` Michal Hocko
2016-05-18  8:25                       ` Michal Hocko
2016-05-18  9:49                       ` Peter Zijlstra
2016-05-18  9:49                         ` Peter Zijlstra
2016-05-18 11:31                         ` Michal Hocko
2016-05-18 11:31                           ` Michal Hocko
2016-05-19  8:11                   ` Peter Zijlstra
2016-05-19  8:11                     ` Peter Zijlstra
2016-05-20  0:17                     ` Dave Chinner
2016-05-20  0:17                       ` Dave Chinner
2016-06-01 13:17                       ` Michal Hocko
2016-06-01 13:17                         ` Michal Hocko
2016-06-01 18:16                         ` Peter Zijlstra
2016-06-01 18:16                           ` Peter Zijlstra
2016-06-02 14:50                           ` Michal Hocko
2016-06-02 14:50                             ` Michal Hocko
2016-06-02 15:11                             ` Peter Zijlstra
2016-06-02 15:11                               ` Peter Zijlstra
2016-06-02 15:46                               ` Michal Hocko
2016-06-02 15:46                                 ` Michal Hocko
2016-06-02 23:22                                 ` Dave Chinner
2016-06-02 23:22                                   ` Dave Chinner
2016-06-06 12:20                                   ` Michal Hocko
2016-06-06 12:20                                     ` Michal Hocko
2016-06-15  7:21                                     ` Dave Chinner
2016-06-15  7:21                                       ` Dave Chinner
2016-06-21 14:26                                       ` Michal Hocko
2016-06-21 14:26                                         ` Michal Hocko
2016-06-22  1:03                                         ` Dave Chinner
2016-06-22  1:03                                           ` Dave Chinner
2016-06-22 12:38                                           ` Michal Hocko
2016-06-22 12:38                                             ` Michal Hocko
2016-06-22 22:58                                             ` Dave Chinner [this message]
2016-06-22 22:58                                               ` Dave Chinner
2016-06-23 11:35                                               ` Michal Hocko
2016-06-23 11:35                                                 ` Michal Hocko
2016-10-06 13:04                           ` Michal Hocko
2016-10-06 13:04                             ` Michal Hocko
2016-10-17 13:49                             ` Michal Hocko
2016-10-17 13:49                               ` Michal Hocko
2016-10-19  0:33                             ` Dave Chinner
2016-10-19  0:33                               ` Dave Chinner
2016-10-19  5:30                               ` Dave Chinner
2016-10-19  5:30                                 ` Dave Chinner
2016-10-19  8:33                             ` Peter Zijlstra
2016-10-19  8:33                               ` Peter Zijlstra
2016-10-19 12:06                               ` Michal Hocko
2016-10-19 12:06                                 ` Michal Hocko
2016-10-19 21:49                                 ` Dave Chinner
2016-10-19 21:49                                   ` Dave Chinner
2016-10-20  7:15                                   ` Michal Hocko
2016-10-20  7:15                                     ` Michal Hocko

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=20160622225816.GY12670@dastard \
    --to=david@fromorbit.com \
    --cc=darrick.wong@oracle.com \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@kernel.org \
    --cc=mingo@kernel.org \
    --cc=peterz@infradead.org \
    --cc=quwenruo@cn.fujitsu.com \
    --cc=xfs@oss.sgi.com \
    /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.