]> git.proxmox.com Git - pve-kernel-2.6.32.git/blame - dlm-Remove-superfluous-call-to-recalc_sigpending.patch
update e1000e to 1.5.1
[pve-kernel-2.6.32.git] / dlm-Remove-superfluous-call-to-recalc_sigpending.patch
CommitLineData
ed2a6bee
DM
1From 4bcad6c1ef53a9a0224f4654ceb3b9030d0769ec Mon Sep 17 00:00:00 2001
2From: Matt Fleming <matt.fleming@linux.intel.com>
3Date: Thu, 24 Mar 2011 13:56:47 +0000
4Subject: [PATCH 1/1] dlm: Remove superfluous call to recalc_sigpending()
5
6recalc_sigpending() is called within sigprocmask(), so there is no
7need call it again after sigprocmask() has returned.
8
9Signed-off-by: Matt Fleming <matt.fleming@linux.intel.com>
10Signed-off-by: David Teigland <teigland@redhat.com>
11---
12 fs/dlm/user.c | 1 -
13 1 files changed, 0 insertions(+), 1 deletions(-)
14
15diff --git a/fs/dlm/user.c b/fs/dlm/user.c
16index d5ab3fe..e96bf3e 100644
17--- a/fs/dlm/user.c
18+++ b/fs/dlm/user.c
19@@ -611,7 +611,6 @@ static ssize_t device_write(struct file *file, const char __user *buf,
20
21 out_sig:
22 sigprocmask(SIG_SETMASK, &tmpsig, NULL);
23- recalc_sigpending();
24 out_free:
25 kfree(kbuf);
26 return error;
27--
281.7.2.5
29