diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2010-02-21 00:51:42 -0500 |
|---|---|---|
| committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-21 01:54:05 -0500 |
| commit | aef55d4922e62a0d887e60d87319f3718aec6ced (patch) | |
| tree | e81bdf46d49fa3421747b2b2074aaeae3aee890b | |
| parent | ca4dbc668412d5fe039be3e26e8e717a616d1ca5 (diff) | |
| parent | eb5b3794062824ba12d883901eea49ea89d0a678 (diff) | |
Merge branch 'x86/urgent' into x86/irq
Merge reason: conflict in arch/x86/kernel/apic/io_apic.c
Resolved Conflicts:
arch/x86/kernel/apic/io_apic.c
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
| -rw-r--r-- | arch/x86/ia32/ia32_aout.c | 1 | ||||
| -rw-r--r-- | arch/x86/include/asm/io_apic.h | 1 | ||||
| -rw-r--r-- | arch/x86/include/asm/system.h | 4 | ||||
| -rw-r--r-- | arch/x86/kernel/acpi/boot.c | 14 | ||||
| -rw-r--r-- | arch/x86/kernel/apic/apic.c | 17 | ||||
| -rw-r--r-- | arch/x86/kernel/apic/io_apic.c | 54 | ||||
| -rw-r--r-- | arch/x86/kernel/apic/probe_32.c | 29 | ||||
| -rw-r--r-- | arch/x86/kernel/apic/probe_64.c | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/mpparse.c | 7 | ||||
| -rw-r--r-- | arch/x86/kernel/reboot.c | 8 | ||||
| -rw-r--r-- | arch/x86/kernel/smpboot.c | 2 | ||||
| -rw-r--r-- | arch/x86/mm/gup.c | 2 | ||||
| -rw-r--r-- | drivers/char/agp/amd64-agp.c | 5 |
13 files changed, 103 insertions, 43 deletions
diff --git a/arch/x86/ia32/ia32_aout.c b/arch/x86/ia32/ia32_aout.c index f9f472462753..14531abdd0ce 100644 --- a/arch/x86/ia32/ia32_aout.c +++ b/arch/x86/ia32/ia32_aout.c | |||
| @@ -327,7 +327,6 @@ static int load_aout_binary(struct linux_binprm *bprm, struct pt_regs *regs) | |||
| 327 | current->mm->free_area_cache = TASK_UNMAPPED_BASE; | 327 | current->mm->free_area_cache = TASK_UNMAPPED_BASE; |
| 328 | current->mm->cached_hole_size = 0; | 328 | current->mm->cached_hole_size = 0; |
| 329 | 329 | ||
| 330 | current->mm->mmap = NULL; | ||
| 331 | install_exec_creds(bprm); | 330 | install_exec_creds(bprm); |
| 332 | current->flags &= ~PF_FORKNOEXEC; | 331 | current->flags &= ~PF_FORKNOEXEC; |
| 333 | 332 | ||
diff --git a/arch/x86/include/asm/io_apic.h b/arch/x86/include/asm/io_apic.h index 7c7c16cde1f8..5f61f6e0ffdd 100644 --- a/arch/x86/include/asm/io_apic.h +++ b/arch/x86/include/asm/io_apic.h | |||
| @@ -160,6 +160,7 @@ extern int io_apic_get_redir_entries(int ioapic); | |||
| 160 | struct io_apic_irq_attr; | 160 | struct io_apic_irq_attr; |
| 161 | extern int io_apic_set_pci_routing(struct device *dev, int irq, | 161 | extern int io_apic_set_pci_routing(struct device *dev, int irq, |
| 162 | struct io_apic_irq_attr *irq_attr); | 162 | struct io_apic_irq_attr *irq_attr); |
| 163 | void setup_IO_APIC_irq_extra(u32 gsi); | ||
| 163 | extern int (*ioapic_renumber_irq)(int ioapic, int irq); | 164 | extern int (*ioapic_renumber_irq)(int ioapic, int irq); |
| 164 | extern void ioapic_init_mappings(void); | 165 | extern void ioapic_init_mappings(void); |
| 165 | extern void ioapic_insert_resources(void); | 166 | extern void ioapic_insert_resources(void); |
diff --git a/arch/x86/include/asm/system.h b/arch/x86/include/asm/system.h index ecb544e65382..e04740f7a0bb 100644 --- a/arch/x86/include/asm/system.h +++ b/arch/x86/include/asm/system.h | |||
| @@ -11,9 +11,9 @@ | |||
| 11 | #include <linux/irqflags.h> | 11 | #include <linux/irqflags.h> |
| 12 | 12 | ||
| 13 | /* entries in ARCH_DLINFO: */ | 13 | /* entries in ARCH_DLINFO: */ |
| 14 | #ifdef CONFIG_IA32_EMULATION | 14 | #if defined(CONFIG_IA32_EMULATION) || !defined(CONFIG_X86_64) |
| 15 | # define AT_VECTOR_SIZE_ARCH 2 | 15 | # define AT_VECTOR_SIZE_ARCH 2 |
| 16 | #else | 16 | #else /* else it's non-compat x86-64 */ |
| 17 | # define AT_VECTOR_SIZE_ARCH 1 | 17 | # define AT_VECTOR_SIZE_ARCH 1 |
| 18 | #endif | 18 | #endif |
| 19 | 19 | ||
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 036d28adf59d..5c96b75c6ea8 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
| @@ -446,6 +446,12 @@ void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger) | |||
| 446 | int acpi_gsi_to_irq(u32 gsi, unsigned int *irq) | 446 | int acpi_gsi_to_irq(u32 gsi, unsigned int *irq) |
| 447 | { | 447 | { |
| 448 | *irq = gsi; | 448 | *irq = gsi; |
| 449 | |||
| 450 | #ifdef CONFIG_X86_IO_APIC | ||
| 451 | if (acpi_irq_model == ACPI_IRQ_MODEL_IOAPIC) | ||
| 452 | setup_IO_APIC_irq_extra(gsi); | ||
| 453 | #endif | ||
| 454 | |||
| 449 | return 0; | 455 | return 0; |
| 450 | } | 456 | } |
| 451 | 457 | ||
| @@ -473,7 +479,8 @@ int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, int polarity) | |||
| 473 | plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity); | 479 | plat_gsi = mp_register_gsi(dev, gsi, trigger, polarity); |
| 474 | } | 480 | } |
| 475 | #endif | 481 | #endif |
| 476 | acpi_gsi_to_irq(plat_gsi, &irq); | 482 | irq = plat_gsi; |
| 483 | |||
| 477 | return irq; | 484 | return irq; |
| 478 | } | 485 | } |
| 479 | 486 | ||
| @@ -1185,9 +1192,6 @@ static void __init acpi_process_madt(void) | |||
| 1185 | if (!error) { | 1192 | if (!error) { |
| 1186 | acpi_lapic = 1; | 1193 | acpi_lapic = 1; |
| 1187 | 1194 | ||
| 1188 | #ifdef CONFIG_X86_BIGSMP | ||
| 1189 | generic_bigsmp_probe(); | ||
| 1190 | #endif | ||
| 1191 | /* | 1195 | /* |
| 1192 | * Parse MADT IO-APIC entries | 1196 | * Parse MADT IO-APIC entries |
| 1193 | */ | 1197 | */ |
| @@ -1197,8 +1201,6 @@ static void __init acpi_process_madt(void) | |||
| 1197 | acpi_ioapic = 1; | 1201 | acpi_ioapic = 1; |
| 1198 | 1202 | ||
| 1199 | smp_found_config = 1; | 1203 | smp_found_config = 1; |
| 1200 | if (apic->setup_apic_routing) | ||
| 1201 | apic->setup_apic_routing(); | ||
| 1202 | } | 1204 | } |
| 1203 | } | 1205 | } |
| 1204 | if (error == -EINVAL) { | 1206 | if (error == -EINVAL) { |
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 3987e4408f75..dfca210f6a10 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
| @@ -1641,9 +1641,7 @@ int __init APIC_init_uniprocessor(void) | |||
| 1641 | #endif | 1641 | #endif |
| 1642 | 1642 | ||
| 1643 | enable_IR_x2apic(); | 1643 | enable_IR_x2apic(); |
| 1644 | #ifdef CONFIG_X86_64 | ||
| 1645 | default_setup_apic_routing(); | 1644 | default_setup_apic_routing(); |
| 1646 | #endif | ||
| 1647 | 1645 | ||
| 1648 | verify_local_APIC(); | 1646 | verify_local_APIC(); |
| 1649 | connect_bsp_APIC(); | 1647 | connect_bsp_APIC(); |
| @@ -1891,21 +1889,6 @@ void __cpuinit generic_processor_info(int apicid, int version) | |||
| 1891 | if (apicid > max_physical_apicid) | 1889 | if (apicid > max_physical_apicid) |
| 1892 | max_physical_apicid = apicid; | 1890 | max_physical_apicid = apicid; |
| 1893 | 1891 | ||
| 1894 | #ifdef CONFIG_X86_32 | ||
| 1895 | if (num_processors > 8) { | ||
| 1896 | switch (boot_cpu_data.x86_vendor) { | ||
| 1897 | case X86_VENDOR_INTEL: | ||
| 1898 | if (!APIC_XAPIC(version)) { | ||
| 1899 | def_to_bigsmp = 0; | ||
| 1900 | break; | ||
| 1901 | } | ||
| 1902 | /* If P4 and above fall through */ | ||
| 1903 | case X86_VENDOR_AMD: | ||
| 1904 | def_to_bigsmp = 1; | ||
| 1905 | } | ||
| 1906 | } | ||
| 1907 | #endif | ||
| 1908 | |||
| 1909 | #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) | 1892 | #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) |
| 1910 | early_per_cpu(x86_cpu_to_apicid, cpu) = apicid; | 1893 | early_per_cpu(x86_cpu_to_apicid, cpu) = apicid; |
| 1911 | early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid; | 1894 | early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid; |
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index c64ddd9d9979..527390cd6115 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
| @@ -1539,6 +1539,56 @@ static void __init setup_IO_APIC_irqs(void) | |||
| 1539 | } | 1539 | } |
| 1540 | 1540 | ||
| 1541 | /* | 1541 | /* |
| 1542 | * for the gsit that is not in first ioapic | ||
| 1543 | * but could not use acpi_register_gsi() | ||
| 1544 | * like some special sci in IBM x3330 | ||
| 1545 | */ | ||
| 1546 | void setup_IO_APIC_irq_extra(u32 gsi) | ||
| 1547 | { | ||
| 1548 | int apic_id = 0, pin, idx, irq; | ||
| 1549 | int node = cpu_to_node(boot_cpu_id); | ||
| 1550 | struct irq_desc *desc; | ||
| 1551 | struct irq_cfg *cfg; | ||
| 1552 | |||
| 1553 | /* | ||
| 1554 | * Convert 'gsi' to 'ioapic.pin'. | ||
| 1555 | */ | ||
| 1556 | apic_id = mp_find_ioapic(gsi); | ||
| 1557 | if (apic_id < 0) | ||
| 1558 | return; | ||
| 1559 | |||
| 1560 | pin = mp_find_ioapic_pin(apic_id, gsi); | ||
| 1561 | idx = find_irq_entry(apic_id, pin, mp_INT); | ||
| 1562 | if (idx == -1) | ||
| 1563 | return; | ||
| 1564 | |||
| 1565 | irq = pin_2_irq(idx, apic_id, pin); | ||
| 1566 | #ifdef CONFIG_SPARSE_IRQ | ||
| 1567 | desc = irq_to_desc(irq); | ||
| 1568 | if (desc) | ||
| 1569 | return; | ||
| 1570 | #endif | ||
| 1571 | desc = irq_to_desc_alloc_node(irq, node); | ||
| 1572 | if (!desc) { | ||
| 1573 | printk(KERN_INFO "can not get irq_desc for %d\n", irq); | ||
| 1574 | return; | ||
| 1575 | } | ||
| 1576 | |||
| 1577 | cfg = desc->chip_data; | ||
| 1578 | add_pin_to_irq_node(cfg, node, apic_id, pin); | ||
| 1579 | |||
| 1580 | if (test_bit(pin, mp_ioapic_routing[apic_id].pin_programmed)) { | ||
| 1581 | pr_debug("Pin %d-%d already programmed\n", | ||
| 1582 | mp_ioapics[apic_id].apicid, pin); | ||
| 1583 | return; | ||
| 1584 | } | ||
| 1585 | set_bit(pin, mp_ioapic_routing[apic_id].pin_programmed); | ||
| 1586 | |||
| 1587 | setup_IO_APIC_irq(apic_id, pin, irq, desc, | ||
| 1588 | irq_trigger(idx), irq_polarity(idx)); | ||
| 1589 | } | ||
| 1590 | |||
| 1591 | /* | ||
| 1542 | * Set up the timer pin, possibly with the 8259A-master behind. | 1592 | * Set up the timer pin, possibly with the 8259A-master behind. |
| 1543 | */ | 1593 | */ |
| 1544 | static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin, | 1594 | static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin, |
| @@ -3252,14 +3302,12 @@ int create_irq(void) | |||
| 3252 | void destroy_irq(unsigned int irq) | 3302 | void destroy_irq(unsigned int irq) |
| 3253 | { | 3303 | { |
| 3254 | unsigned long flags; | 3304 | unsigned long flags; |
| 3255 | struct irq_cfg *cfg; | ||
| 3256 | 3305 | ||
| 3257 | dynamic_irq_cleanup_keep_chip_data(irq); | 3306 | dynamic_irq_cleanup_keep_chip_data(irq); |
| 3258 | 3307 | ||
| 3259 | free_irte(irq); | 3308 | free_irte(irq); |
| 3260 | spin_lock_irqsave(&vector_lock, flags); | 3309 | spin_lock_irqsave(&vector_lock, flags); |
| 3261 | cfg = irq_to_desc(irq)->chip_data; | 3310 | __clear_irq_vector(irq, get_irq_chip_data(irq)); |
| 3262 | __clear_irq_vector(irq, cfg); | ||
| 3263 | spin_unlock_irqrestore(&vector_lock, flags); | 3311 | spin_unlock_irqrestore(&vector_lock, flags); |
| 3264 | } | 3312 | } |
| 3265 | 3313 | ||
diff --git a/arch/x86/kernel/apic/probe_32.c b/arch/x86/kernel/apic/probe_32.c index 1a6559f6768c..99d2fe016084 100644 --- a/arch/x86/kernel/apic/probe_32.c +++ b/arch/x86/kernel/apic/probe_32.c | |||
| @@ -52,7 +52,32 @@ static int __init print_ipi_mode(void) | |||
| 52 | } | 52 | } |
| 53 | late_initcall(print_ipi_mode); | 53 | late_initcall(print_ipi_mode); |
| 54 | 54 | ||
| 55 | void default_setup_apic_routing(void) | 55 | void __init default_setup_apic_routing(void) |
| 56 | { | ||
| 57 | int version = apic_version[boot_cpu_physical_apicid]; | ||
| 58 | |||
| 59 | if (num_possible_cpus() > 8) { | ||
| 60 | switch (boot_cpu_data.x86_vendor) { | ||
| 61 | case X86_VENDOR_INTEL: | ||
| 62 | if (!APIC_XAPIC(version)) { | ||
| 63 | def_to_bigsmp = 0; | ||
| 64 | break; | ||
| 65 | } | ||
| 66 | /* If P4 and above fall through */ | ||
| 67 | case X86_VENDOR_AMD: | ||
| 68 | def_to_bigsmp = 1; | ||
| 69 | } | ||
| 70 | } | ||
| 71 | |||
| 72 | #ifdef CONFIG_X86_BIGSMP | ||
| 73 | generic_bigsmp_probe(); | ||
| 74 | #endif | ||
| 75 | |||
| 76 | if (apic->setup_apic_routing) | ||
| 77 | apic->setup_apic_routing(); | ||
| 78 | } | ||
| 79 | |||
| 80 | static void setup_apic_flat_routing(void) | ||
| 56 | { | 81 | { |
| 57 | #ifdef CONFIG_X86_IO_APIC | 82 | #ifdef CONFIG_X86_IO_APIC |
| 58 | printk(KERN_INFO | 83 | printk(KERN_INFO |
| @@ -103,7 +128,7 @@ struct apic apic_default = { | |||
| 103 | .init_apic_ldr = default_init_apic_ldr, | 128 | .init_apic_ldr = default_init_apic_ldr, |
| 104 | 129 | ||
| 105 | .ioapic_phys_id_map = default_ioapic_phys_id_map, | 130 | .ioapic_phys_id_map = default_ioapic_phys_id_map, |
| 106 | .setup_apic_routing = default_setup_apic_routing, | 131 | .setup_apic_routing = setup_apic_flat_routing, |
| 107 | .multi_timer_check = NULL, | 132 | .multi_timer_check = NULL, |
| 108 | .apicid_to_node = default_apicid_to_node, | 133 | .apicid_to_node = default_apicid_to_node, |
| 109 | .cpu_to_logical_apicid = default_cpu_to_logical_apicid, | 134 | .cpu_to_logical_apicid = default_cpu_to_logical_apicid, |
diff --git a/arch/x86/kernel/apic/probe_64.c b/arch/x86/kernel/apic/probe_64.c index 450fe2064a14..83e9be4778e2 100644 --- a/arch/x86/kernel/apic/probe_64.c +++ b/arch/x86/kernel/apic/probe_64.c | |||
| @@ -67,7 +67,7 @@ void __init default_setup_apic_routing(void) | |||
| 67 | } | 67 | } |
| 68 | #endif | 68 | #endif |
| 69 | 69 | ||
| 70 | if (apic == &apic_flat && num_processors > 8) | 70 | if (apic == &apic_flat && num_possible_cpus() > 8) |
| 71 | apic = &apic_physflat; | 71 | apic = &apic_physflat; |
| 72 | 72 | ||
| 73 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); | 73 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); |
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index 40b54ceb68b5..a2c1edd2d3ac 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
| @@ -359,13 +359,6 @@ static int __init smp_read_mpc(struct mpc_table *mpc, unsigned early) | |||
| 359 | x86_init.mpparse.mpc_record(1); | 359 | x86_init.mpparse.mpc_record(1); |
| 360 | } | 360 | } |
| 361 | 361 | ||
| 362 | #ifdef CONFIG_X86_BIGSMP | ||
| 363 | generic_bigsmp_probe(); | ||
| 364 | #endif | ||
| 365 | |||
| 366 | if (apic->setup_apic_routing) | ||
| 367 | apic->setup_apic_routing(); | ||
| 368 | |||
| 369 | if (!num_processors) | 362 | if (!num_processors) |
| 370 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); | 363 | printk(KERN_ERR "MPTABLE: no processors registered!\n"); |
| 371 | return num_processors; | 364 | return num_processors; |
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 704bddcdf64d..8e1aac86b50c 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
| @@ -461,6 +461,14 @@ static struct dmi_system_id __initdata pci_reboot_dmi_table[] = { | |||
| 461 | DMI_MATCH(DMI_PRODUCT_NAME, "Macmini3,1"), | 461 | DMI_MATCH(DMI_PRODUCT_NAME, "Macmini3,1"), |
| 462 | }, | 462 | }, |
| 463 | }, | 463 | }, |
| 464 | { /* Handle problems with rebooting on the iMac9,1. */ | ||
| 465 | .callback = set_pci_reboot, | ||
| 466 | .ident = "Apple iMac9,1", | ||
| 467 | .matches = { | ||
| 468 | DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), | ||
| 469 | DMI_MATCH(DMI_PRODUCT_NAME, "iMac9,1"), | ||
| 470 | }, | ||
| 471 | }, | ||
| 464 | { } | 472 | { } |
| 465 | }; | 473 | }; |
| 466 | 474 | ||
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index eff2fe175422..96f5f40a5c29 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
| @@ -1083,9 +1083,7 @@ void __init native_smp_prepare_cpus(unsigned int max_cpus) | |||
| 1083 | set_cpu_sibling_map(0); | 1083 | set_cpu_sibling_map(0); |
| 1084 | 1084 | ||
| 1085 | enable_IR_x2apic(); | 1085 | enable_IR_x2apic(); |
| 1086 | #ifdef CONFIG_X86_64 | ||
| 1087 | default_setup_apic_routing(); | 1086 | default_setup_apic_routing(); |
| 1088 | #endif | ||
| 1089 | 1087 | ||
| 1090 | if (smp_sanity_check(max_cpus) < 0) { | 1088 | if (smp_sanity_check(max_cpus) < 0) { |
| 1091 | printk(KERN_INFO "SMP disabled\n"); | 1089 | printk(KERN_INFO "SMP disabled\n"); |
diff --git a/arch/x86/mm/gup.c b/arch/x86/mm/gup.c index 71da1bca13cb..738e6593799d 100644 --- a/arch/x86/mm/gup.c +++ b/arch/x86/mm/gup.c | |||
| @@ -18,7 +18,7 @@ static inline pte_t gup_get_pte(pte_t *ptep) | |||
| 18 | #else | 18 | #else |
| 19 | /* | 19 | /* |
| 20 | * With get_user_pages_fast, we walk down the pagetables without taking | 20 | * With get_user_pages_fast, we walk down the pagetables without taking |
| 21 | * any locks. For this we would like to load the pointers atoimcally, | 21 | * any locks. For this we would like to load the pointers atomically, |
| 22 | * but that is not possible (without expensive cmpxchg8b) on PAE. What | 22 | * but that is not possible (without expensive cmpxchg8b) on PAE. What |
| 23 | * we do have is the guarantee that a pte will only either go from not | 23 | * we do have is the guarantee that a pte will only either go from not |
| 24 | * present to present, or present to not present or both -- it will not | 24 | * present to present, or present to not present or both -- it will not |
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c index 34cf04e21795..fd50ead59c79 100644 --- a/drivers/char/agp/amd64-agp.c +++ b/drivers/char/agp/amd64-agp.c | |||
| @@ -767,16 +767,19 @@ int __init agp_amd64_init(void) | |||
| 767 | 767 | ||
| 768 | static int __init agp_amd64_mod_init(void) | 768 | static int __init agp_amd64_mod_init(void) |
| 769 | { | 769 | { |
| 770 | #ifndef MODULE | ||
| 770 | if (gart_iommu_aperture) | 771 | if (gart_iommu_aperture) |
| 771 | return agp_bridges_found ? 0 : -ENODEV; | 772 | return agp_bridges_found ? 0 : -ENODEV; |
| 772 | 773 | #endif | |
| 773 | return agp_amd64_init(); | 774 | return agp_amd64_init(); |
| 774 | } | 775 | } |
| 775 | 776 | ||
| 776 | static void __exit agp_amd64_cleanup(void) | 777 | static void __exit agp_amd64_cleanup(void) |
| 777 | { | 778 | { |
| 779 | #ifndef MODULE | ||
| 778 | if (gart_iommu_aperture) | 780 | if (gart_iommu_aperture) |
| 779 | return; | 781 | return; |
| 782 | #endif | ||
| 780 | if (aperture_resource) | 783 | if (aperture_resource) |
| 781 | release_resource(aperture_resource); | 784 | release_resource(aperture_resource); |
| 782 | pci_unregister_driver(&agp_amd64_pci_driver); | 785 | pci_unregister_driver(&agp_amd64_pci_driver); |
