diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 18:51:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 18:54:07 -0400 |
commit | e03508b43fd93410c1abda2eeabe021de8461f95 (patch) | |
tree | 4e06ae2ce0e6a0c5c93a8ad79322ff53a11fc874 /arch/i386/lib/semaphore.S | |
parent | d7a297baa6edea94167163bed808c6a8933bd5aa (diff) | |
parent | 88271e9e43e65537c6390af3718a60c45c787e8f (diff) |
Merge branch 'for-linus' of git://one.firstfloor.org/home/andi/git/linux-2.6
* 'for-linus' of git://one.firstfloor.org/home/andi/git/linux-2.6:
[PATCH] i386: fix rwsem build bug on CONFIG_M386=y
[PATCH] x86-64: Annotate interrupt frame backlink in interrupt handlers
[PATCH] x86-64: Fix FPU corruption
[PATCH] x86: Terminate the kernel stacks for the unwinder
[PATCH] i386: Fix PCI BIOS config space access
[PATCH] x86-64: Calgary IOMMU: print PCI bus numbers in hex
[PATCH] x86-64: Calgary IOMMU: Update Jon's contact info
[PATCH] x86-64: Calgary IOMMU: Fix off by one when calculating register space location
[PATCH] x86-64: Calgary IOMMU: deobfuscate calgary_init
[PATCH] i386: Update defconfig
[PATCH] x86-64: Update defconfig
[ Manually skipped commits that incorrectly ignored AC in kernel space.
The alignment fault is defined to only happen for CPL3 anyway - Linus ]
Diffstat (limited to 'arch/i386/lib/semaphore.S')
-rw-r--r-- | arch/i386/lib/semaphore.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/i386/lib/semaphore.S b/arch/i386/lib/semaphore.S index ef6ad9e1a609..c01eb39c0b43 100644 --- a/arch/i386/lib/semaphore.S +++ b/arch/i386/lib/semaphore.S | |||
@@ -152,6 +152,8 @@ ENTRY(__read_lock_failed) | |||
152 | 152 | ||
153 | #endif | 153 | #endif |
154 | 154 | ||
155 | #ifdef CONFIG_RWSEM_XCHGADD_ALGORITHM | ||
156 | |||
155 | /* Fix up special calling conventions */ | 157 | /* Fix up special calling conventions */ |
156 | ENTRY(call_rwsem_down_read_failed) | 158 | ENTRY(call_rwsem_down_read_failed) |
157 | CFI_STARTPROC | 159 | CFI_STARTPROC |
@@ -214,3 +216,4 @@ ENTRY(call_rwsem_downgrade_wake) | |||
214 | CFI_ENDPROC | 216 | CFI_ENDPROC |
215 | END(call_rwsem_downgrade_wake) | 217 | END(call_rwsem_downgrade_wake) |
216 | 218 | ||
219 | #endif | ||