summaryrefslogtreecommitdiff
path: root/src/udev
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-04-26 12:26:02 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-04-26 14:50:25 +0900
commitede5e271b1900c5cc85e330a5da2c657282d7910 (patch)
tree5de48260d9ca1a4149ecc236d5a782ac9f40cc91 /src/udev
parentb2fccd07293da8cabdbfea9638ac235a9e076757 (diff)
downloadsystemd-ede5e271b1900c5cc85e330a5da2c657282d7910.tar.gz
udev/iocost: fix log message
Diffstat (limited to 'src/udev')
-rw-r--r--src/udev/iocost/iocost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/iocost/iocost.c b/src/udev/iocost/iocost.c
index 804d11ca17..fc8223e2b6 100644
--- a/src/udev/iocost/iocost.c
+++ b/src/udev/iocost/iocost.c
@@ -168,7 +168,7 @@ static int query_named_solution(
if (r == -ENOENT)
return log_device_debug_errno(device, r, "No value found for key %s, skipping iocost logic.", qos_key);
if (r < 0)
- return log_device_error_errno(device, r, "Failed to obtain model for iocost solution from device: %m");
+ return log_device_error_errno(device, r, "Failed to obtain QoS for iocost solution from device: %m");
r = sd_device_get_property_value(device, model_key, &model);
if (r == -ENOENT)