Skip to content

Commit

Permalink
signal: Remove SEND_SIG_FORCED
Browse files Browse the repository at this point in the history
There are no more users of SEND_SIG_FORCED so it may be safely removed.

Remove the definition of SEND_SIG_FORCED, it's use in is_si_special,
it's use in TP_STORE_SIGINFO, and it's use in __send_signal as without
any users the uses of SEND_SIG_FORCED are now unncessary.

This makes the code simpler, easier to understand and use.  Users of
signal sending functions now no longer need to ask themselves do I
need to use SEND_SIG_FORCED.

Reviewed-by: Thomas Gleixner <[email protected]>
Signed-off-by: "Eric W. Biederman" <[email protected]>
  • Loading branch information
ebiederm committed Sep 11, 2018
1 parent 079b22d commit 4ff4c31
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion include/linux/sched/signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,6 @@ static inline int kill_cad_pid(int sig, int priv)
/* These can be the second arg to send_sig_info/send_group_sig_info. */
#define SEND_SIG_NOINFO ((struct siginfo *) 0)
#define SEND_SIG_PRIV ((struct siginfo *) 1)
#define SEND_SIG_FORCED ((struct siginfo *) 2)

/*
* True if we are on the alternate signal stack.
Expand Down
3 changes: 1 addition & 2 deletions include/trace/events/signal.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@

#define TP_STORE_SIGINFO(__entry, info) \
do { \
if (info == SEND_SIG_NOINFO || \
info == SEND_SIG_FORCED) { \
if (info == SEND_SIG_NOINFO) { \
__entry->errno = 0; \
__entry->code = SI_USER; \
} else if (info == SEND_SIG_PRIV) { \
Expand Down
7 changes: 3 additions & 4 deletions kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ static void flush_sigqueue_mask(sigset_t *mask, struct sigpending *s)

static inline int is_si_special(const struct siginfo *info)
{
return info <= SEND_SIG_FORCED;
return info <= SEND_SIG_PRIV;
}

static inline bool si_fromuser(const struct siginfo *info)
Expand Down Expand Up @@ -1039,7 +1039,7 @@ static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,

result = TRACE_SIGNAL_IGNORED;
if (!prepare_signal(sig, t,
from_ancestor_ns || (info == SEND_SIG_PRIV) || (info == SEND_SIG_FORCED)))
from_ancestor_ns || (info == SEND_SIG_PRIV)))
goto ret;

pending = (type != PIDTYPE_PID) ? &t->signal->shared_pending : &t->pending;
Expand All @@ -1057,8 +1057,7 @@ static int __send_signal(int sig, struct siginfo *info, struct task_struct *t,
* Skip useless siginfo allocation for SIGKILL SIGSTOP,
* and kernel threads.
*/
if ((info == SEND_SIG_FORCED) ||
sig_kernel_only(sig) || (t->flags & PF_KTHREAD))
if (sig_kernel_only(sig) || (t->flags & PF_KTHREAD))
goto out_set;

/*
Expand Down

0 comments on commit 4ff4c31

Please sign in to comment.