All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Shuge <shugelinux@gmail.com>
Cc: "Darrick J. Wong" <darrick.wong@oracle.com>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	linux-ext4@vger.kernel.org, Kevin <kevin@allwinnertech.com>,
	Jan Kara <jack@suse.cz>, "Theodore Ts'o" <tytso@mit.edu>,
	Jens Axboe <axboe@kernel.dk>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] bounce:fix bug, avoid to flush dcache on slab page from jbd2.
Date: Tue, 12 Mar 2013 21:11:38 -0700	[thread overview]
Message-ID: <20130312211138.a2824b7e.akpm@linux-foundation.org> (raw)
In-Reply-To: <513FF3F3.2000509@gmail.com>

On Wed, 13 Mar 2013 11:35:15 +0800 Shuge <shugelinux@gmail.com> wrote:

> Hi all
> >>> The bounce accept slab pages from jbd2, and flush dcache on them.
> >>> When enabling VM_DEBUG, it will tigger VM_BUG_ON in page_mapping().
> >>> So, check PageSlab to avoid it in __blk_queue_bounce().
> >>>
> >>> Bug URL: http://lkml.org/lkml/2013/3/7/56
> >>>
> >>> ...
> >>>
> >> ......
> >>
> > That sure is strange.  I didn't see any obvious reasons why we'd end up with a
> >
> ......
> 
>      Well, this problem not only appear in arm64, but also arm32. And my 
> kernel version is 3.3.0, arch is arm32.
> Following the newest kernel, the problem shoulde be exist.
>      I agree with Darrick's modification. Hum, if 
> CONFIG_NEED_BOUNCE_POOL is not set, it also flush dcahce on
> the pages of b_frozen_data, some of them are allocated by kmem_cache_alloc.
>      As we know, jbd2_alloc allocate a buffer from jbd2_xk slab pool, 
> when the size is smaller than PAGE_SIZE.
> The b_frozen_data  is not mapped to usrspace, not aliasing cache. It cat 
> be lazy flush or other. Is it right?

Please reread my email.  The page at b_frozen_data was allocated with
GFP_NOFS.  Hence it should not need bounce treatment (if arm is
anything like x86).

And yet it *did* receive bounce treatment.  Why?

--
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>

WARNING: multiple messages have this Message-ID (diff)
From: akpm@linux-foundation.org (Andrew Morton)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] bounce:fix bug, avoid to flush dcache on slab page from jbd2.
Date: Tue, 12 Mar 2013 21:11:38 -0700	[thread overview]
Message-ID: <20130312211138.a2824b7e.akpm@linux-foundation.org> (raw)
In-Reply-To: <513FF3F3.2000509@gmail.com>

On Wed, 13 Mar 2013 11:35:15 +0800 Shuge <shugelinux@gmail.com> wrote:

> Hi all
> >>> The bounce accept slab pages from jbd2, and flush dcache on them.
> >>> When enabling VM_DEBUG, it will tigger VM_BUG_ON in page_mapping().
> >>> So, check PageSlab to avoid it in __blk_queue_bounce().
> >>>
> >>> Bug URL: http://lkml.org/lkml/2013/3/7/56
> >>>
> >>> ...
> >>>
> >> ......
> >>
> > That sure is strange.  I didn't see any obvious reasons why we'd end up with a
> >
> ......
> 
>      Well, this problem not only appear in arm64, but also arm32. And my 
> kernel version is 3.3.0, arch is arm32.
> Following the newest kernel, the problem shoulde be exist.
>      I agree with Darrick's modification. Hum, if 
> CONFIG_NEED_BOUNCE_POOL is not set, it also flush dcahce on
> the pages of b_frozen_data, some of them are allocated by kmem_cache_alloc.
>      As we know, jbd2_alloc allocate a buffer from jbd2_xk slab pool, 
> when the size is smaller than PAGE_SIZE.
> The b_frozen_data  is not mapped to usrspace, not aliasing cache. It cat 
> be lazy flush or other. Is it right?

Please reread my email.  The page at b_frozen_data was allocated with
GFP_NOFS.  Hence it should not need bounce treatment (if arm is
anything like x86).

And yet it *did* receive bounce treatment.  Why?

WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@linux-foundation.org>
To: Shuge <shugelinux@gmail.com>
Cc: "Darrick J. Wong" <darrick.wong@oracle.com>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	linux-ext4@vger.kernel.org, Kevin <kevin@allwinnertech.com>,
	Jan Kara <jack@suse.cz>, "Theodore Ts'o" <tytso@mit.edu>,
	Jens Axboe <axboe@kernel.dk>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will.deacon@arm.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] bounce:fix bug, avoid to flush dcache on slab page from jbd2.
Date: Tue, 12 Mar 2013 21:11:38 -0700	[thread overview]
Message-ID: <20130312211138.a2824b7e.akpm@linux-foundation.org> (raw)
In-Reply-To: <513FF3F3.2000509@gmail.com>

On Wed, 13 Mar 2013 11:35:15 +0800 Shuge <shugelinux@gmail.com> wrote:

> Hi all
> >>> The bounce accept slab pages from jbd2, and flush dcache on them.
> >>> When enabling VM_DEBUG, it will tigger VM_BUG_ON in page_mapping().
> >>> So, check PageSlab to avoid it in __blk_queue_bounce().
> >>>
> >>> Bug URL: http://lkml.org/lkml/2013/3/7/56
> >>>
> >>> ...
> >>>
> >> ......
> >>
> > That sure is strange.  I didn't see any obvious reasons why we'd end up with a
> >
> ......
> 
>      Well, this problem not only appear in arm64, but also arm32. And my 
> kernel version is 3.3.0, arch is arm32.
> Following the newest kernel, the problem shoulde be exist.
>      I agree with Darrick's modification. Hum, if 
> CONFIG_NEED_BOUNCE_POOL is not set, it also flush dcahce on
> the pages of b_frozen_data, some of them are allocated by kmem_cache_alloc.
>      As we know, jbd2_alloc allocate a buffer from jbd2_xk slab pool, 
> when the size is smaller than PAGE_SIZE.
> The b_frozen_data  is not mapped to usrspace, not aliasing cache. It cat 
> be lazy flush or other. Is it right?

Please reread my email.  The page at b_frozen_data was allocated with
GFP_NOFS.  Hence it should not need bounce treatment (if arm is
anything like x86).

And yet it *did* receive bounce treatment.  Why?

  reply	other threads:[~2013-03-13  4:11 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-08 12:37 [PATCH] bounce:fix bug, avoid to flush dcache on slab page from jbd2 Shuge
2013-03-08 12:37 ` Shuge
2013-03-12 22:32 ` Andrew Morton
2013-03-12 22:32   ` Andrew Morton
2013-03-13  1:10   ` Darrick J. Wong
2013-03-13  1:10     ` Darrick J. Wong
2013-03-13  1:10     ` Darrick J. Wong
2013-03-13  3:35     ` Shuge
2013-03-13  3:35       ` Shuge
2013-03-13  3:35       ` Shuge
2013-03-13  4:11       ` Andrew Morton [this message]
2013-03-13  4:11         ` Andrew Morton
2013-03-13  4:11         ` Andrew Morton
2013-03-13  9:42         ` Russell King - ARM Linux
2013-03-13  9:42           ` Russell King - ARM Linux
2013-03-13  9:42           ` Russell King - ARM Linux
2013-03-13  8:50     ` Jan Kara
2013-03-13  8:50       ` Jan Kara
2013-03-13  8:50       ` Jan Kara
2013-03-13 19:44       ` Darrick J. Wong
2013-03-13 19:44         ` Darrick J. Wong
2013-03-13 19:44         ` Darrick J. Wong
2013-03-13 21:02         ` Jan Kara
2013-03-13 21:02           ` Jan Kara
2013-03-13 21:02           ` Jan Kara
2013-03-14 22:42           ` Darrick J. Wong
2013-03-14 22:42             ` Darrick J. Wong
2013-03-14 22:42             ` Darrick J. Wong
2013-03-14 23:01             ` Andrew Morton
2013-03-14 23:01               ` Andrew Morton
2013-03-14 23:01               ` Andrew Morton
2013-03-15 10:01             ` Jan Kara
2013-03-15 10:01               ` Jan Kara
2013-03-15 10:01               ` Jan Kara
2013-03-15 17:54               ` Darrick J. Wong
2013-03-15 17:54                 ` Darrick J. Wong
2013-03-15 17:54                 ` Darrick J. Wong
2013-03-18 17:32                 ` Jan Kara
2013-03-18 17:32                   ` Jan Kara
2013-03-18 17:32                   ` Jan Kara
2013-03-15 23:28               ` [PATCH] mm: Make snapshotting pages for stable writes a per-bio operation Darrick J. Wong
2013-03-15 23:28                 ` Darrick J. Wong
2013-03-15 23:28                 ` Darrick J. Wong
2013-03-18 17:41                 ` Jan Kara
2013-03-18 17:41                   ` Jan Kara
2013-03-18 17:41                   ` Jan Kara
2013-03-18 23:01                   ` Darrick J. Wong
2013-03-18 23:01                     ` Darrick J. Wong
2013-03-18 23:01                     ` Darrick J. Wong
2013-03-18 23:02                   ` [PATCH v3] " Darrick J. Wong
2013-03-18 23:02                     ` Darrick J. Wong
2013-03-18 23:02                     ` Darrick J. Wong
2013-03-19  8:54                     ` Jan Kara
2013-03-19  8:54                       ` Jan Kara
2013-03-19  8:54                       ` Jan Kara
2013-04-02 17:01                     ` Darrick J. Wong
2013-04-02 17:01                       ` Darrick J. Wong
2013-04-02 17:01                       ` Darrick J. Wong
2013-04-02 17:01                       ` Darrick J. Wong
2013-04-03 14:20                       ` Mel Gorman
2013-04-03 14:20                         ` Mel Gorman
2013-04-03 14:20                         ` Mel Gorman
2013-04-03 14:42                         ` Jan Kara
2013-04-03 14:42                           ` Jan Kara
2013-04-03 14:42                           ` Jan Kara
2013-04-09 18:03                           ` Darrick J. Wong
2013-04-09 18:03                             ` Darrick J. Wong
2013-04-09 18:03                             ` Darrick J. Wong
2013-03-14 22:46           ` [PATCH] bounce:fix bug, avoid to flush dcache on slab page from jbd2 Andrew Morton
2013-03-14 22:46             ` Andrew Morton
2013-03-14 22:46             ` Andrew Morton
2013-03-14 23:27             ` Darrick J. Wong
2013-03-14 23:27               ` Darrick J. Wong
2013-03-14 23:27               ` Darrick J. Wong

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=20130312211138.a2824b7e.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=axboe@kernel.dk \
    --cc=catalin.marinas@arm.com \
    --cc=darrick.wong@oracle.com \
    --cc=jack@suse.cz \
    --cc=kevin@allwinnertech.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-ext4@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=shugelinux@gmail.com \
    --cc=tytso@mit.edu \
    --cc=will.deacon@arm.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.