From 8b39c3063faaf25dcf2dd0c310a9ae834faf6ac9 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 5 Dec 2018 11:14:26 +1100 Subject: [PATCH] fs-remove-caller-signal_pending-branch-predictions-fix fix fs/buffer.c Cc: Davidlohr Bueso Signed-off-by: Andrew Morton Signed-off-by: Stephen Rothwell --- fs/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/buffer.c b/fs/buffer.c index 803f9d75162c..580fda0ab61b 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -2397,7 +2397,7 @@ static int cont_expand_zero(struct file *file, struct address_space *mapping, balance_dirty_pages_ratelimited(mapping); - if (fatal_signal_pending(current))) { + if (fatal_signal_pending(current)) { err = -EINTR; goto out; } -- 2.50.1