Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753891Ab3GTKuR (ORCPT ); Sat, 20 Jul 2013 06:50:17 -0400 Received: from v094114.home.net.pl ([79.96.170.134]:62931 "HELO v094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1753731Ab3GTKuO (ORCPT ); Sat, 20 Jul 2013 06:50:14 -0400 From: "Rafael J. Wysocki" To: Kay Sievers Cc: LKML , Greg Kroah-Hartman , Tim Chen , ACPI Devel Maling List , "H. Peter Anvin" , systemd-devel@lists.freedesktop.org Subject: Re: udev: New default rule for autoloading kernel modules matching CPU modalias Date: Sat, 20 Jul 2013 13:00:12 +0200 Message-ID: <59759957.oRusLgSSoH@vostro.rjw.lan> User-Agent: KMail/4.9.5 (Linux/3.10.0+; KDE/4.9.5; x86_64; ; ) In-Reply-To: <1623844.aKWlCHQqy1@vostro.rjw.lan> References: <1623844.aKWlCHQqy1@vostro.rjw.lan> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1831 Lines: 45 On Saturday, July 20, 2013 12:56:54 PM Rafael J. Wysocki wrote: > Hi Kay, > > After a recent change present in 3.11-rc1 there is a driver, called processor, > that can be bound to the CPU devices whose sysfs directories are located under > /sys/devices/system/cpu/. A side effect of this is that, after the driver has > been bound to those devices, the kernel adds DRIVER=processor to ENV for CPU > uevents and they don't match the default rule for autoloading modules matching > MODALIAS: > > DRIVER!="?*", ENV{MODALIAS}=="?*", IMPORT{builtin}="kmod load $env{MODALIAS}" > > any more. However, there are some modules whose module aliases match specific > CPU features through the modalias string and those modules should be loaded > automatically if a compatible CPU is present. Yet, with the processor driver > bound to the CPU devices the above rule is not sufficient for that, so we need > a new default udev rule allowing those modules to be autoloaded even if the > CPU devices have drivers. > > On my test systems I added the following rule for that: > > ACTION="add", SUBSYSTEM=="cpu", ENV{MODALIAS}=="?*", IMPORT{builtin}="kmod load $env{MODALIAS}" That should have been: ACTION=="add", SUBSYSTEM=="cpu", ENV{MODALIAS}=="?*", IMPORT{builtin}="kmod load $env{MODALIAS}" sorry about the mistake. > in a separate file, but I'm not a udev expert, so I guess it may be done in a > better way. > > Can you please consider adding such a rule to the default set of udev rules? Rafael -- I speak only for myself. Rafael J. Wysocki, Intel Open Source Technology Center. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/