]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ACPI: remove cpumask_t usage
authorBjorn Helgaas <bjorn.helgaas@hp.com>
Thu, 24 Sep 2009 15:34:38 +0000 (09:34 -0600)
committerRusty Russell <rusty@rustcorp.com.au>
Thu, 24 Sep 2009 00:04:38 +0000 (09:34 +0930)
set_cpus_allowed() is on the way out; replace it with
set_cpus_allowed_ptr().

Reference: http://lkml.org/lkml/2008/11/6/448

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
drivers/acpi/osl.c

index 56071b67bed58f055150fbf0d23ead4ebe369bb5..5633b86e3ed1cb97dab2777294beafd0802480cb 100644 (file)
@@ -193,7 +193,7 @@ acpi_status __init acpi_os_initialize(void)
 
 static void bind_to_cpu0(struct work_struct *work)
 {
-       set_cpus_allowed(current, cpumask_of_cpu(0));
+       set_cpus_allowed_ptr(current, cpumask_of(0));
        kfree(work);
 }