mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
64ac24e738
Semaphores are no longer performance-critical, so a generic C implementation is better for maintainability, debuggability and extensibility. Thanks to Peter Zijlstra for fixing the lockdep warning. Thanks to Harvey Harrison for pointing out that the unlikely() was unnecessary. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Acked-by: Ingo Molnar <mingo@elte.hu>
19 lines
373 B
Makefile
19 lines
373 B
Makefile
#
|
|
# Makefile for the Linux/Xtensa kernel.
|
|
#
|
|
|
|
extra-y := head.o vmlinux.lds
|
|
|
|
|
|
obj-y := align.o entry.o irq.o coprocessor.o process.o ptrace.o \
|
|
setup.o signal.o syscall.o time.o traps.o vectors.o platform.o \
|
|
pci-dma.o init_task.o io.o
|
|
|
|
## windowspill.o
|
|
|
|
obj-$(CONFIG_KGDB) += xtensa-stub.o
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
obj-$(CONFIG_MODULES) += xtensa_ksyms.o module.o
|
|
|
|
|