diff options
author | 2016-05-05 08:41:36 +0200 | |
---|---|---|
committer | 2016-05-05 08:41:36 +0200 | |
commit | f3391a160b22f8e006f3fb8ef39aa01da749fbf0 (patch) | |
tree | 9a8f61fe1a3dd0d12e7511567b2344f80f5aa531 /fs/jbd2/commit.c | |
parent | x86/cpufeature: Fix build bug caused by merge artifact with the removal of cpu_has_hypervisor (diff) | |
parent | Linux 4.6-rc6 (diff) | |
download | wireguard-linux-f3391a160b22f8e006f3fb8ef39aa01da749fbf0.tar.xz wireguard-linux-f3391a160b22f8e006f3fb8ef39aa01da749fbf0.zip |
Merge tag 'v4.6-rc6' into x86/cpu, to refresh the tree
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'fs/jbd2/commit.c')
-rw-r--r-- | fs/jbd2/commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c index 517f2de784cf..2ad98d6e19f4 100644 --- a/fs/jbd2/commit.c +++ b/fs/jbd2/commit.c @@ -81,11 +81,11 @@ static void release_buffer_page(struct buffer_head *bh) if (!trylock_page(page)) goto nope; - page_cache_get(page); + get_page(page); __brelse(bh); try_to_free_buffers(page); unlock_page(page); - page_cache_release(page); + put_page(page); return; nope: |