mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
staging: lustre: libcfs: remove cfs_signal_pending wrapper
Use signal_pending() directly instead of a one line function wrapper. Signed-off-by: James Simmons <uja.ornl@gmail.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6245 Reviewed-on: http://review.whamcloud.com/13874 Reviewed-by: Dmitry Eremin <dmitry.eremin@intel.com> Reviewed-by: John L. Hammond <john.hammond@intel.com> Reviewed-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3404f60d8b
commit
9af4826aeb
@ -66,7 +66,6 @@ sigset_t cfs_block_allsigs(void);
|
||||
sigset_t cfs_block_sigs(unsigned long sigs);
|
||||
sigset_t cfs_block_sigsinv(unsigned long sigs);
|
||||
void cfs_restore_sigs(sigset_t);
|
||||
int cfs_signal_pending(void);
|
||||
void cfs_clear_sigpending(void);
|
||||
|
||||
/*
|
||||
|
@ -128,13 +128,6 @@ cfs_restore_sigs(sigset_t old)
|
||||
}
|
||||
EXPORT_SYMBOL(cfs_restore_sigs);
|
||||
|
||||
int
|
||||
cfs_signal_pending(void)
|
||||
{
|
||||
return signal_pending(current);
|
||||
}
|
||||
EXPORT_SYMBOL(cfs_signal_pending);
|
||||
|
||||
void
|
||||
cfs_clear_sigpending(void)
|
||||
{
|
||||
|
@ -578,7 +578,7 @@ do { \
|
||||
\
|
||||
if (condition) \
|
||||
break; \
|
||||
if (cfs_signal_pending()) { \
|
||||
if (signal_pending(current)) { \
|
||||
if (info->lwi_on_signal && \
|
||||
(__timeout == 0 || __allow_intr)) { \
|
||||
if (info->lwi_on_signal != LWI_ON_SIGNAL_NOOP) \
|
||||
|
@ -951,7 +951,7 @@ int cl_lock_state_wait(const struct lu_env *env, struct cl_lock *lock)
|
||||
result = -ERESTARTSYS;
|
||||
if (likely(!OBD_FAIL_CHECK(OBD_FAIL_LOCK_STATE_WAIT_INTR))) {
|
||||
schedule();
|
||||
if (!cfs_signal_pending())
|
||||
if (!signal_pending(current))
|
||||
result = 0;
|
||||
}
|
||||
|
||||
|
@ -2087,7 +2087,7 @@ int ptlrpc_set_wait(struct ptlrpc_request_set *set)
|
||||
CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
|
||||
set, timeout);
|
||||
|
||||
if (timeout == 0 && !cfs_signal_pending())
|
||||
if (timeout == 0 && !signal_pending(current))
|
||||
/*
|
||||
* No requests are in-flight (ether timed out
|
||||
* or delayed), so we can allow interrupts.
|
||||
@ -2114,7 +2114,7 @@ int ptlrpc_set_wait(struct ptlrpc_request_set *set)
|
||||
* it being ignored forever
|
||||
*/
|
||||
if (rc == -ETIMEDOUT && !lwi.lwi_allow_intr &&
|
||||
cfs_signal_pending()) {
|
||||
signal_pending(current)) {
|
||||
sigset_t blocked_sigs =
|
||||
cfs_block_sigsinv(LUSTRE_FATAL_SIGS);
|
||||
|
||||
@ -2124,7 +2124,7 @@ int ptlrpc_set_wait(struct ptlrpc_request_set *set)
|
||||
* important signals since ptlrpc set is not easily
|
||||
* reentrant from userspace again
|
||||
*/
|
||||
if (cfs_signal_pending())
|
||||
if (signal_pending(current))
|
||||
ptlrpc_interrupted_set(set);
|
||||
cfs_restore_sigs(blocked_sigs);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user