* [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk()
@ 2015-06-30 6:26 Nikolay Borisov
2015-06-30 6:26 ` [PATCH 2/2] ext4: make use of sb_getblk_gfp Nikolay Borisov
2015-07-02 6:14 ` [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk() Theodore Ts'o
0 siblings, 2 replies; 6+ messages in thread
From: Nikolay Borisov @ 2015-06-30 6:26 UTC (permalink / raw)
To: tytso, adilger.kernel; +Cc: linux-ext4, linux-kernel
sb_getblk() is used during ext4 (and possibly other FSes) writeback
paths. Sometimes such path require allocating memory and guaranteeing
that such allocation won't block. Currently, however, there is no way
to provide user flags for sb_getblk which could lead to deadlocks.
This patch implements a sb_getblk_gfp with the only difference it can
accept user-provided GFP flags.
Signed-off-by: Nikolay Borisov <kernel@kyup.com>
---
As per the discussion in this thread (http://marc.info/?l=linux-ext4&m=143563347324528&w=2)
here are the patches which hopefully implement Ted's suggestion.
include/linux/buffer_head.h | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h
index 73b4522..e6797de 100644
--- a/include/linux/buffer_head.h
+++ b/include/linux/buffer_head.h
@@ -317,6 +317,13 @@ sb_getblk(struct super_block *sb, sector_t block)
return __getblk_gfp(sb->s_bdev, block, sb->s_blocksize, __GFP_MOVABLE);
}
+
+static inline struct buffer_head *
+sb_getblk_gfp(struct super_block *sb, sector_t block, gfp_t gfp)
+{
+ return __getblk_gfp(sb->s_bdev, block, sb->s_blocksize, gfp);
+}
+
static inline struct buffer_head *
sb_find_get_block(struct super_block *sb, sector_t block)
{
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] ext4: make use of sb_getblk_gfp
2015-06-30 6:26 [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk() Nikolay Borisov
@ 2015-06-30 6:26 ` Nikolay Borisov
2015-07-02 6:14 ` Theodore Ts'o
2015-07-02 6:14 ` [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk() Theodore Ts'o
1 sibling, 1 reply; 6+ messages in thread
From: Nikolay Borisov @ 2015-06-30 6:26 UTC (permalink / raw)
To: tytso, adilger.kernel; +Cc: linux-ext4, linux-kernel
Switch ext4 to using sb_getblk_gfp with GFP_NOFS added, this fixes
possible deadlocks in the page writeback path.
Signed-off-by: Nikolay Borisov <kernel@kyup.com>
---
fs/ext4/extents.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index e003a1e..87ba10d 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -503,7 +503,7 @@ __read_extent_tree_block(const char *function, unsigned int line,
struct buffer_head *bh;
int err;
- bh = sb_getblk(inode->i_sb, pblk);
+ bh = sb_getblk_gfp(inode->i_sb, pblk, __GFP_MOVABLE | GFP_NOFS);
if (unlikely(!bh))
return ERR_PTR(-ENOMEM);
@@ -1088,7 +1088,7 @@ static int ext4_ext_split(handle_t *handle, struct inode *inode,
err = -EIO;
goto cleanup;
}
- bh = sb_getblk(inode->i_sb, newblock);
+ bh = sb_getblk_gfp(inode->i_sb, newblock, __GFP_MOVABLE | GFP_NOFS);
if (unlikely(!bh)) {
err = -ENOMEM;
goto cleanup;
@@ -1282,7 +1282,7 @@ static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode,
if (newblock == 0)
return err;
- bh = sb_getblk(inode->i_sb, newblock);
+ bh = sb_getblk_gfp(inode->i_sb, newblock, __GFP_MOVABLE | GFP_NOFS);
if (unlikely(!bh))
return -ENOMEM;
lock_buffer(bh);
--
1.7.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] ext4: make use of sb_getblk_gfp
2015-06-30 6:26 ` [PATCH 2/2] ext4: make use of sb_getblk_gfp Nikolay Borisov
@ 2015-07-02 6:14 ` Theodore Ts'o
2015-07-02 6:16 ` Nikolay Borisov
0 siblings, 1 reply; 6+ messages in thread
From: Theodore Ts'o @ 2015-07-02 6:14 UTC (permalink / raw)
To: Nikolay Borisov; +Cc: adilger.kernel, linux-ext4, linux-kernel
On Tue, Jun 30, 2015 at 09:26:49AM +0300, Nikolay Borisov wrote:
> Switch ext4 to using sb_getblk_gfp with GFP_NOFS added, this fixes
> possible deadlocks in the page writeback path.
>
> Signed-off-by: Nikolay Borisov <kernel@kyup.com>
I've added this to the ext4.git tree, thanks.
- Ted
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] ext4: make use of sb_getblk_gfp
2015-07-02 6:14 ` Theodore Ts'o
@ 2015-07-02 6:16 ` Nikolay Borisov
2015-07-02 14:17 ` Theodore Ts'o
0 siblings, 1 reply; 6+ messages in thread
From: Nikolay Borisov @ 2015-07-02 6:16 UTC (permalink / raw)
To: Theodore Ts'o, adilger.kernel, linux-ext4, linux-kernel
On 07/02/2015 09:14 AM, Theodore Ts'o wrote:
> On Tue, Jun 30, 2015 at 09:26:49AM +0300, Nikolay Borisov wrote:
>> Switch ext4 to using sb_getblk_gfp with GFP_NOFS added, this fixes
>> possible deadlocks in the page writeback path.
>>
>> Signed-off-by: Nikolay Borisov <kernel@kyup.com>
>
> I've added this to the ext4.git tree, thanks.
>
> - Ted
Thanks!
Just a question that popped to my mind after discussing with a colleague
- Is GFP_NOFS enough here or should it be GFP_NOIO? Presumably the
latter is a stronger guarantee that we are not going to hit any
fs/writeback related code?
Nikolay
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] ext4: make use of sb_getblk_gfp
2015-07-02 6:16 ` Nikolay Borisov
@ 2015-07-02 14:17 ` Theodore Ts'o
0 siblings, 0 replies; 6+ messages in thread
From: Theodore Ts'o @ 2015-07-02 14:17 UTC (permalink / raw)
To: Nikolay Borisov; +Cc: adilger.kernel, linux-ext4, linux-kernel
On Thu, Jul 02, 2015 at 09:16:34AM +0300, Nikolay Borisov wrote:
>
> Just a question that popped to my mind after discussing with a colleague
> - Is GFP_NOFS enough here or should it be GFP_NOIO? Presumably the
> latter is a stronger guarantee that we are not going to hit any
> fs/writeback related code?
GFP_NOFS is fine here; file system code calls the I/O codepaths, but
device driver code doesn't call fs code. Put another way, if there
are pages that are backed by a block device, which can be cleaned
without going through the FS code paths, it's fine to let that happen
while we are inside file system code.
- Ted
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk()
2015-06-30 6:26 [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk() Nikolay Borisov
2015-06-30 6:26 ` [PATCH 2/2] ext4: make use of sb_getblk_gfp Nikolay Borisov
@ 2015-07-02 6:14 ` Theodore Ts'o
1 sibling, 0 replies; 6+ messages in thread
From: Theodore Ts'o @ 2015-07-02 6:14 UTC (permalink / raw)
To: Nikolay Borisov; +Cc: adilger.kernel, linux-ext4, linux-kernel
On Tue, Jun 30, 2015 at 09:26:48AM +0300, Nikolay Borisov wrote:
> sb_getblk() is used during ext4 (and possibly other FSes) writeback
> paths. Sometimes such path require allocating memory and guaranteeing
> that such allocation won't block. Currently, however, there is no way
> to provide user flags for sb_getblk which could lead to deadlocks.
>
> This patch implements a sb_getblk_gfp with the only difference it can
> accept user-provided GFP flags.
>
> Signed-off-by: Nikolay Borisov <kernel@kyup.com>
I've added this to the ext4.git tree, thanks.
- Ted
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-07-02 14:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-30 6:26 [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk() Nikolay Borisov
2015-06-30 6:26 ` [PATCH 2/2] ext4: make use of sb_getblk_gfp Nikolay Borisov
2015-07-02 6:14 ` Theodore Ts'o
2015-07-02 6:16 ` Nikolay Borisov
2015-07-02 14:17 ` Theodore Ts'o
2015-07-02 6:14 ` [PATCH 1/2] bufferhead: Add _gfp version for sb_getblk() Theodore Ts'o
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).