chiark / gitweb /
sd-device: don't retry loading uevent/db files more than once
authorTom Gundersen <teg@jklm.no>
Sat, 25 Apr 2015 23:07:42 +0000 (01:07 +0200)
committerSven Eden <yamakuzure@gmx.net>
Tue, 14 Mar 2017 07:14:08 +0000 (08:14 +0100)
If for whatever reason there was nothing to load or loading failed, don't keep trying.

src/libelogind/sd-device/sd-device.c

index 9ef851a6bbfcd6ed53839fbc3ecab28b548b3c17..691b9c63273175786b4c726df00aa4eb16d34143 100644 (file)
@@ -500,6 +500,8 @@ int device_read_uevent_file(sd_device *device) {
         if (device->uevent_loaded || device->sealed)
                 return 0;
 
+        device->uevent_loaded = true;
+
         r = sd_device_get_syspath(device, &syspath);
         if (r < 0)
                 return r;
@@ -570,8 +572,6 @@ int device_read_uevent_file(sd_device *device) {
                         log_debug("sd-device: could not set 'MAJOR=%s' or 'MINOR=%s' from '%s': %s", major, minor, path, strerror(-r));
         }
 
-        device->uevent_loaded = true;
-
         return 0;
 }
 
@@ -1243,6 +1243,8 @@ int device_read_db_aux(sd_device *device, bool force) {
         if (device->db_loaded || (!force && device->sealed))
                 return 0;
 
+        device->db_loaded = true;
+
         r = device_get_id_filename(device, &id);
         if (r < 0)
                 return r;
@@ -1311,8 +1313,6 @@ int device_read_db_aux(sd_device *device, bool force) {
                 }
         }
 
-        device->db_loaded = true;
-
         return 0;
 }