37 lines
1.4 KiB
Diff
37 lines
1.4 KiB
Diff
From 42885ab01726b5937390704f1d6ec33f0321fd53 Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Sun, 4 Aug 2024 11:29:03 +0900
|
|
Subject: [PATCH] sd-event: change error code -EINVAL -> -EIO
|
|
|
|
EINVAL should be used when a function is called with an invalid
|
|
argument. Here, the signal is not a function argument.
|
|
|
|
Follow-up for 7a64c5f23efbb51fe4f1229c1a8aed6dd858a0a9.
|
|
|
|
(cherry picked from commit ab9af70edb23f2a66e93e2e16f87cd98873885b7)
|
|
(cherry picked from commit 84f0eda3781f49ff7f3035861b02fe247b89d65e)
|
|
(cherry picked from commit da81ee2f78526f78b3c57661a59de681d208e35e)
|
|
|
|
Conflict:NA
|
|
Reference:https://github.com/systemd/systemd/commit/ab9af70edb23f2a66e93e2e16f87cd98873885b7
|
|
---
|
|
src/libsystemd/sd-event/sd-event.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/libsystemd/sd-event/sd-event.c b/src/libsystemd/sd-event/sd-event.c
|
|
index 97678a4b5e..cd78d39eb4 100644
|
|
--- a/src/libsystemd/sd-event/sd-event.c
|
|
+++ b/src/libsystemd/sd-event/sd-event.c
|
|
@@ -3831,7 +3831,7 @@ static int process_signal(sd_event *e, struct signal_data *d, uint32_t events, i
|
|
return -EIO;
|
|
|
|
if (_unlikely_(!SIGNAL_VALID(si.ssi_signo)))
|
|
- return -EINVAL;
|
|
+ return -EIO;
|
|
|
|
if (e->signal_sources)
|
|
s = e->signal_sources[si.ssi_signo];
|
|
--
|
|
2.33.0
|
|
|