* Do not bother enumerating over subsystems that do not
* contain interesting devices.
*/
-const char *subsystem_blacklist[] = {
+const char *subsystem_ignored[] = {
"acpi", "tty", "vc", "i2c",
};
{
size_t i;
- for (i = 0; i < G_N_ELEMENTS(subsystem_blacklist); i++) {
- const char *s = subsystem_blacklist[i];
+ for (i = 0; i < G_N_ELEMENTS(subsystem_ignored); i++) {
+ const char *s = subsystem_ignored[i];
if (udev_enumerate_add_nomatch_subsystem(udev_enumerate, s) < 0) {
virReportSystemError(errno, "%s", _("failed to add susbsystem filter"));
return -1;