The patch titled arch/x86/kernel/entry_32.S: i386 too! has been removed from the -mm tree. Its filename was arch-x86-kernel-entry_32s-i386-too.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: arch/x86/kernel/entry_32.S: i386 too! From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> arch/x86/kernel/entry_32.S: Assembler messages: arch/x86/kernel/entry_32.S:385: Error: too many positional arguments arch/x86/kernel/entry_32.S:391: Error: too many positional arguments arch/x86/kernel/entry_32.S:398: Error: too many positional arguments arch/x86/kernel/entry_32.S:586: Error: too many positional arguments arch/x86/kernel/entry_32.S:760: Error: too many positional arguments arch/x86/kernel/entry_32.S:1300: Error: too many positional arguments arch/x86/kernel/entry_32.S:1352: Error: too many positional arguments arch/x86/kernel/entry_32.S:1363: Error: too many positional arguments arch/x86/kernel/entry_32.S:760: Error: too many positional arguments Cc: Jan Beulich <jbeulich@xxxxxxxxxx> Cc: Alexander van Heukelum <heukelum@xxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/kernel/entry_32.S | 164 +++++++++++++++++------------------ 1 file changed, 82 insertions(+), 82 deletions(-) diff -puN arch/x86/kernel/entry_32.S~arch-x86-kernel-entry_32s-i386-too arch/x86/kernel/entry_32.S --- a/arch/x86/kernel/entry_32.S~arch-x86-kernel-entry_32s-i386-too +++ a/arch/x86/kernel/entry_32.S @@ -115,7 +115,7 @@ /* unfortunately push/pop can't be no-op */ .macro PUSH_GS - pushl_cfi $0 + pushl $0 .endm .macro POP_GS pop=0 addl $(4 + \pop), %esp @@ -139,7 +139,7 @@ #else /* CONFIG_X86_32_LAZY_GS */ .macro PUSH_GS - pushl_cfi %gs + pushl %gs /*CFI_REL_OFFSET gs, 0*/ .endm @@ -192,25 +192,25 @@ .macro SAVE_ALL cld PUSH_GS - pushl_cfi %fs + pushl %fs /*CFI_REL_OFFSET fs, 0;*/ - pushl_cfi %es + pushl %es /*CFI_REL_OFFSET es, 0;*/ - pushl_cfi %ds + pushl %ds /*CFI_REL_OFFSET ds, 0;*/ - pushl_cfi %eax + pushl %eax CFI_REL_OFFSET eax, 0 - pushl_cfi %ebp + pushl %ebp CFI_REL_OFFSET ebp, 0 - pushl_cfi %edi + pushl %edi CFI_REL_OFFSET edi, 0 - pushl_cfi %esi + pushl %esi CFI_REL_OFFSET esi, 0 - pushl_cfi %edx + pushl %edx CFI_REL_OFFSET edx, 0 - pushl_cfi %ecx + pushl %ecx CFI_REL_OFFSET ecx, 0 - pushl_cfi %ebx + pushl %ebx CFI_REL_OFFSET ebx, 0 movl $(__USER_DS), %edx movl %edx, %ds @@ -297,11 +297,11 @@ ENTRY(ret_from_fork) CFI_STARTPROC - pushl_cfi %eax + pushl %eax call schedule_tail GET_THREAD_INFO(%ebp) popl_cfi %eax - pushl_cfi $0x0202 # Reset kernel eflags + pushl $0x0202 # Reset kernel eflags popfl_cfi jmp syscall_exit CFI_ENDPROC @@ -382,23 +382,23 @@ sysenter_past_esp: * enough kernel state to call TRACE_IRQS_OFF can be called - but * we immediately enable interrupts at that point anyway. */ - pushl_cfi $__USER_DS + pushl $__USER_DS /*CFI_REL_OFFSET ss, 0*/ - pushl_cfi %ebp + pushl %ebp CFI_REL_OFFSET esp, 0 pushfl_cfi orl $X86_EFLAGS_IF, (%esp) - pushl_cfi $__USER_CS + pushl $__USER_CS /*CFI_REL_OFFSET cs, 0*/ /* * Push current_thread_info()->sysenter_return to the stack. * A tiny bit of offset fixup is necessary - 4*4 means the 4 words * pushed above; +8 corresponds to copy_thread's esp0 setting. */ - pushl_cfi ((TI_sysenter_return)-THREAD_SIZE_asm+8+4*4)(%esp) + pushl ((TI_sysenter_return)-THREAD_SIZE_asm+8+4*4)(%esp) CFI_REL_OFFSET eip, 0 - pushl_cfi %eax + pushl %eax SAVE_ALL ENABLE_INTERRUPTS(CLBR_NONE) @@ -453,7 +453,7 @@ sysenter_audit: movl %eax,%edx /* 2nd arg: syscall number */ movl $AUDIT_ARCH_I386,%eax /* 1st arg: audit arch */ call audit_syscall_entry - pushl_cfi %ebx + pushl %ebx movl PT_EAX(%esp),%eax /* reload syscall number */ jmp sysenter_do_call @@ -495,7 +495,7 @@ ENDPROC(ia32_sysenter_target) # system call handler stub ENTRY(system_call) RING0_INT_FRAME # can't unwind into user space anyway - pushl_cfi %eax # save orig_eax + pushl %eax # save orig_eax SAVE_ALL GET_THREAD_INFO(%ebp) # system call tracing in operation / emulation @@ -583,8 +583,8 @@ ldt_ss: shr $16, %edx mov %dl, GDT_ESPFIX_SS + 4 /* bits 16..23 */ mov %dh, GDT_ESPFIX_SS + 7 /* bits 24..31 */ - pushl_cfi $__ESPFIX_SS - pushl_cfi %eax /* new kernel esp */ + pushl $__ESPFIX_SS + pushl %eax /* new kernel esp */ /* Disable interrupts, but do not irqtrace this section: we * will soon execute iret and the tracer was already set to * the irqstate after the iret */ @@ -628,7 +628,7 @@ work_notifysig: # deal with pending s ALIGN work_notifysig_v86: - pushl_cfi %ecx # save ti_flags for do_notify_resume + pushl %ecx # save ti_flags for do_notify_resume call save_v86_state # %eax contains pt_regs pointer popl_cfi %ecx movl %eax, %esp @@ -712,7 +712,7 @@ ptregs_##name: \ ptregs_##name: \ CFI_STARTPROC; \ leal 4(%esp),%eax; \ - pushl_cfi %eax; \ + pushl %eax; \ movl PT_EDX(%eax),%ecx; \ movl PT_ECX(%eax),%edx; \ movl PT_EBX(%eax),%eax; \ @@ -738,8 +738,8 @@ PTREGSCALL1(vm86old) ptregs_clone: CFI_STARTPROC leal 4(%esp),%eax - pushl_cfi %eax - pushl_cfi PT_EDI(%eax) + pushl %eax + pushl PT_EDI(%eax) movl PT_EDX(%eax),%ecx movl PT_ECX(%eax),%edx movl PT_EBX(%eax),%eax @@ -763,8 +763,8 @@ ENDPROC(ptregs_clone) mov GDT_ESPFIX_SS + 7, %ah /* bits 24..31 */ shl $16, %eax addl %esp, %eax /* the adjusted stack pointer */ - pushl_cfi $__KERNEL_DS - pushl_cfi %eax + pushl $__KERNEL_DS + pushl %eax lss (%esp), %esp /* switch to the normal stack segment */ CFI_ADJUST_CFA_OFFSET -8 .endm @@ -801,7 +801,7 @@ vector=FIRST_EXTERNAL_VECTOR .if vector <> FIRST_EXTERNAL_VECTOR CFI_ADJUST_CFA_OFFSET -4 .endif -1: pushl_cfi $(~vector+0x80) /* Note: always in signed byte range */ +1: pushl $(~vector+0x80) /* Note: always in signed byte range */ .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6 jmp 2f .endif @@ -841,7 +841,7 @@ ENDPROC(common_interrupt) #define BUILD_INTERRUPT3(name, nr, fn) \ ENTRY(name) \ RING0_INT_FRAME; \ - pushl_cfi $~(nr); \ + pushl $~(nr); \ SAVE_ALL; \ TRACE_IRQS_OFF \ movl %esp,%eax; \ @@ -857,18 +857,18 @@ ENDPROC(name) ENTRY(coprocessor_error) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi $do_coprocessor_error + pushl $0 + pushl $do_coprocessor_error jmp error_code CFI_ENDPROC END(coprocessor_error) ENTRY(simd_coprocessor_error) RING0_INT_FRAME - pushl_cfi $0 + pushl $0 #ifdef CONFIG_X86_INVD_BUG /* AMD 486 bug: invd from userspace calls exception 19 instead of #GP */ -661: pushl_cfi $do_general_protection +661: pushl $do_general_protection 662: .section .altinstructions,"a" .balign 4 @@ -883,7 +883,7 @@ ENTRY(simd_coprocessor_error) 664: .previous #else - pushl_cfi $do_simd_coprocessor_error + pushl $do_simd_coprocessor_error #endif jmp error_code CFI_ENDPROC @@ -891,8 +891,8 @@ END(simd_coprocessor_error) ENTRY(device_not_available) RING0_INT_FRAME - pushl_cfi $-1 # mark this as an int - pushl_cfi $do_device_not_available + pushl $-1 # mark this as an int + pushl $do_device_not_available jmp error_code CFI_ENDPROC END(device_not_available) @@ -914,68 +914,68 @@ END(native_irq_enable_sysexit) ENTRY(overflow) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi $do_overflow + pushl $0 + pushl $do_overflow jmp error_code CFI_ENDPROC END(overflow) ENTRY(bounds) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi $do_bounds + pushl $0 + pushl $do_bounds jmp error_code CFI_ENDPROC END(bounds) ENTRY(invalid_op) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi $do_invalid_op + pushl $0 + pushl $do_invalid_op jmp error_code CFI_ENDPROC END(invalid_op) ENTRY(coprocessor_segment_overrun) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi $do_coprocessor_segment_overrun + pushl $0 + pushl $do_coprocessor_segment_overrun jmp error_code CFI_ENDPROC END(coprocessor_segment_overrun) ENTRY(invalid_TSS) RING0_EC_FRAME - pushl_cfi $do_invalid_TSS + pushl $do_invalid_TSS jmp error_code CFI_ENDPROC END(invalid_TSS) ENTRY(segment_not_present) RING0_EC_FRAME - pushl_cfi $do_segment_not_present + pushl $do_segment_not_present jmp error_code CFI_ENDPROC END(segment_not_present) ENTRY(stack_segment) RING0_EC_FRAME - pushl_cfi $do_stack_segment + pushl $do_stack_segment jmp error_code CFI_ENDPROC END(stack_segment) ENTRY(alignment_check) RING0_EC_FRAME - pushl_cfi $do_alignment_check + pushl $do_alignment_check jmp error_code CFI_ENDPROC END(alignment_check) ENTRY(divide_error) RING0_INT_FRAME - pushl_cfi $0 # no error code - pushl_cfi $do_divide_error + pushl $0 # no error code + pushl $do_divide_error jmp error_code CFI_ENDPROC END(divide_error) @@ -983,8 +983,8 @@ END(divide_error) #ifdef CONFIG_X86_MCE ENTRY(machine_check) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi machine_check_vector + pushl $0 + pushl machine_check_vector jmp error_code CFI_ENDPROC END(machine_check) @@ -992,8 +992,8 @@ END(machine_check) ENTRY(spurious_interrupt_bug) RING0_INT_FRAME - pushl_cfi $0 - pushl_cfi $do_spurious_interrupt_bug + pushl $0 + pushl $do_spurious_interrupt_bug jmp error_code CFI_ENDPROC END(spurious_interrupt_bug) @@ -1024,7 +1024,7 @@ ENTRY(xen_sysenter_target) ENTRY(xen_hypervisor_callback) CFI_STARTPROC - pushl_cfi $0 + pushl $0 SAVE_ALL TRACE_IRQS_OFF @@ -1060,7 +1060,7 @@ ENDPROC(xen_hypervisor_callback) # We distinguish between categories by maintaining a status value in EAX. ENTRY(xen_failsafe_callback) CFI_STARTPROC - pushl_cfi %eax + pushl %eax movl $1,%eax 1: mov 4(%esp),%ds 2: mov 8(%esp),%es @@ -1073,7 +1073,7 @@ ENTRY(xen_failsafe_callback) jz 5f addl $16,%esp jmp iret_exc # EAX != 0 => Category 2 (Bad IRET) -5: pushl_cfi $0 # EAX == 0 => Category 1 (Bad segment) +5: pushl $0 # EAX == 0 => Category 1 (Bad segment) SAVE_ALL jmp ret_from_exception CFI_ENDPROC @@ -1223,29 +1223,29 @@ syscall_table_size=(.-sys_call_table) ENTRY(page_fault) RING0_EC_FRAME - pushl_cfi $do_page_fault + pushl $do_page_fault ALIGN error_code: /* the function address is in %gs's slot on the stack */ - pushl_cfi %fs + pushl %fs /*CFI_REL_OFFSET fs, 0*/ - pushl_cfi %es + pushl %es /*CFI_REL_OFFSET es, 0*/ - pushl_cfi %ds + pushl %ds /*CFI_REL_OFFSET ds, 0*/ - pushl_cfi %eax + pushl %eax CFI_REL_OFFSET eax, 0 - pushl_cfi %ebp + pushl %ebp CFI_REL_OFFSET ebp, 0 - pushl_cfi %edi + pushl %edi CFI_REL_OFFSET edi, 0 - pushl_cfi %esi + pushl %esi CFI_REL_OFFSET esi, 0 - pushl_cfi %edx + pushl %edx CFI_REL_OFFSET edx, 0 - pushl_cfi %ecx + pushl %ecx CFI_REL_OFFSET ecx, 0 - pushl_cfi %ebx + pushl %ebx CFI_REL_OFFSET ebx, 0 cld movl $(__KERNEL_PERCPU), %ecx @@ -1288,8 +1288,8 @@ END(page_fault) CFI_DEF_CFA esp, 0 CFI_UNDEFINED eip pushfl_cfi - pushl_cfi $__KERNEL_CS - pushl_cfi $sysenter_past_esp + pushl $__KERNEL_CS + pushl $sysenter_past_esp CFI_REL_OFFSET eip, 0 .endm @@ -1299,7 +1299,7 @@ ENTRY(debug) jne debug_stack_correct FIX_STACK 12, debug_stack_correct, debug_esp_fix_insn debug_stack_correct: - pushl_cfi $-1 # mark this as an int + pushl $-1 # mark this as an int SAVE_ALL TRACE_IRQS_OFF xorl %edx,%edx # error code 0 @@ -1319,14 +1319,14 @@ END(debug) */ ENTRY(nmi) RING0_INT_FRAME - pushl_cfi %eax + pushl %eax movl %ss, %eax cmpw $__ESPFIX_SS, %ax popl_cfi %eax je nmi_espfix_stack cmpl $ia32_sysenter_target,(%esp) je nmi_stack_fixup - pushl_cfi %eax + pushl %eax movl %esp,%eax /* Do not access memory above the end of our stack page, * it might not exist. @@ -1339,7 +1339,7 @@ ENTRY(nmi) je nmi_debug_stack_check nmi_stack_correct: /* We have a RING0_INT_FRAME here */ - pushl_cfi %eax + pushl %eax SAVE_ALL xorl %edx,%edx # zero error code movl %esp,%eax # pt_regs pointer @@ -1368,14 +1368,14 @@ nmi_espfix_stack: * * create the pointer to lss back */ - pushl_cfi %ss - pushl_cfi %esp + pushl %ss + pushl %esp addl $4, (%esp) /* copy the iret frame of 12 bytes */ .rept 3 - pushl_cfi 16(%esp) + pushl 16(%esp) .endr - pushl_cfi %eax + pushl %eax SAVE_ALL FIXUP_ESPFIX_STACK # %eax == %esp xorl %edx,%edx # zero error code @@ -1389,7 +1389,7 @@ END(nmi) ENTRY(int3) RING0_INT_FRAME - pushl_cfi $-1 # mark this as an int + pushl $-1 # mark this as an int SAVE_ALL TRACE_IRQS_OFF xorl %edx,%edx # zero error code @@ -1401,7 +1401,7 @@ END(int3) ENTRY(general_protection) RING0_EC_FRAME - pushl_cfi $do_general_protection + pushl $do_general_protection jmp error_code CFI_ENDPROC END(general_protection) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch linux-next.patch next-remove-localversion.patch i-need-old-gcc.patch arch-alpha-kernel-systblss-remove-debug-check.patch mm-vmap-area-cache.patch arch-x86-kernel-apic-io_apicc-fix-warning.patch drivers-gpu-drm-radeon-atomc-fix-warning.patch irq-use-per_cpu-kstat_irqs-checkpatch-fixes.patch leds-route-kbd-leds-through-the-generic-leds-layer.patch atmel_serial-fix-rts-high-after-initialization-in-rs485-mode-fix.patch drivers-message-fusion-mptsasc-fix-warning.patch mm.patch mm-vmstat-use-a-single-setter-function-and-callback-for-adjusting-percpu-thresholds-fix.patch writeback-check-skipped-pages-on-wb_sync_all-update-fix.patch writeback-make-nr_to_write-a-per-file-limit-fix.patch sync_inode_metadata-fix-comment.patch fs-mpagec-consolidate-code-checkpatch-fixes.patch mm-vmscan-reclaim-order-0-and-use-compaction-instead-of-lumpy-reclaim-fix.patch mm-migration-allow-migration-to-operate-asynchronously-and-avoid-synchronous-compaction-in-the-faster-path-fix.patch mm-deactivate-invalidated-pages-fix.patch frv-duplicate-output_buffer-of-e03-checkpatch-fixes.patch hpet-factor-timer-allocate-from-open.patch include-linux-kernelh-abs-fix-handling-of-32-bit-unsigneds-on-64-bit.patch include-linux-kernelh-abs-fix-handling-of-32-bit-unsigneds-on-64-bit-fix.patch fs-select-fix-information-leak-to-userspace-fix.patch memcg-document-cgroup-dirty-memory-interfaces-fix.patch fs-proc-basec-kernel-latencytopc-convert-sprintf_symbol-to-%ps-checkpatch-fixes.patch exec_domain-establish-a-linux32-domain-on-config_compat-systems.patch pps-add-async-pps-event-handler-fix.patch memstick-add-driver-for-ricoh-r5c592-card-reader-fix.patch journal_add_journal_head-debug.patch slab-leaks3-default-y.patch put_bh-debug.patch getblk-handle-2tb-devices.patch memblock-add-input-size-checking-to-memblock_find_region.patch memblock-add-input-size-checking-to-memblock_find_region-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html