ed2d265d12
"[RFC - PATCH 0/7] consolidation of BUG support code." https://lkml.org/lkml/2012/1/26/525 -- The changes shown here are to unify linux's BUG support under the one <linux/bug.h> file. Due to historical reasons, we have some BUG code in bug.h and some in kernel.h -- i.e. the support for BUILD_BUG in linux/kernel.h predates the addition of linux/bug.h, but old code in kernel.h wasn't moved to bug.h at that time. As a band-aid, kernel.h was including <asm/bug.h> to pseudo link them. This has caused confusion[1] and general yuck/WTF[2] reactions. Here is an example that violates the principle of least surprise: CC lib/string.o lib/string.c: In function 'strlcat': lib/string.c:225:2: error: implicit declaration of function 'BUILD_BUG_ON' make[2]: *** [lib/string.o] Error 1 $ $ grep linux/bug.h lib/string.c #include <linux/bug.h> $ We've included <linux/bug.h> for the BUG infrastructure and yet we still get a compile fail! [We've not kernel.h for BUILD_BUG_ON.] Ugh - very confusing for someone who is new to kernel development. With the above in mind, the goals of this changeset are: 1) find and fix any include/*.h files that were relying on the implicit presence of BUG code. 2) find and fix any C files that were consuming kernel.h and hence relying on implicitly getting some/all BUG code. 3) Move the BUG related code living in kernel.h to <linux/bug.h> 4) remove the asm/bug.h from kernel.h to finally break the chain. During development, the order was more like 3-4, build-test, 1-2. But to ensure that git history for bisect doesn't get needless build failures introduced, the commits have been reorderd to fix the problem areas in advance. [1] https://lkml.org/lkml/2012/1/3/90 [2] https://lkml.org/lkml/2012/1/17/414 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQIcBAABAgAGBQJPbNwpAAoJEOvOhAQsB9HWrqYP/A0t9VB0nK6e42F0OR2P14MZ GJFtf1B++wwioIrx+KSWSRfSur1C5FKhDbxLR3I/pvkAYl4+T4JvRdMG6xJwxyip CC1kVQQNDjWVVqzjz2x6rYkOffx6dUlw/ERyIyk+OzP+1HzRIsIrugMqbzGLlX0X y0v2Tbd0G6xg1DV8lcRdp95eIzcGuUvdb2iY2LGadWZczEOeSXx64Jz3QCFxg3aL LFU4oovsg8Nb7MRJmqDvHK/oQf5vaTm9WSrS0pvVte0msSQRn8LStYdWC0G9BPCS GwL86h/eLXlUXQlC5GpgWg1QQt5i2QpjBFcVBIG0IT5SgEPMx+gXyiqZva2KwbHu LKicjKtfnzPitQnyEV/N6JyV1fb1U6/MsB7ebU5nCCzt9Gr7MYbjZ44peNeprAtu HMvJ/BNnRr4Ha6nPQNu952AdASPKkxmeXFUwBL1zUbLkOX/bK/vy1ujlcdkFxCD7 fP3t7hghYa737IHk0ehUOhrE4H67hvxTSCKioLUAy/YeN1IcfH/iOQiCBQVLWmoS AqYV6ou9cqgdYoyila2UeAqegb+8xyubPIHt+lebcaKxs5aGsTg+r3vq5juMDAPs iwSVYUDcIw9dHer1lJfo7QCy3QUTRDTxh+LB9VlHXQICgeCK02sLBOi9hbEr4/H8 Ko9g8J3BMxcMkXLHT9ud =PYQT -----END PGP SIGNATURE----- Merge tag 'bug-for-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux Pull <linux/bug.h> cleanup from Paul Gortmaker: "The changes shown here are to unify linux's BUG support under the one <linux/bug.h> file. Due to historical reasons, we have some BUG code in bug.h and some in kernel.h -- i.e. the support for BUILD_BUG in linux/kernel.h predates the addition of linux/bug.h, but old code in kernel.h wasn't moved to bug.h at that time. As a band-aid, kernel.h was including <asm/bug.h> to pseudo link them. This has caused confusion[1] and general yuck/WTF[2] reactions. Here is an example that violates the principle of least surprise: CC lib/string.o lib/string.c: In function 'strlcat': lib/string.c:225:2: error: implicit declaration of function 'BUILD_BUG_ON' make[2]: *** [lib/string.o] Error 1 $ $ grep linux/bug.h lib/string.c #include <linux/bug.h> $ We've included <linux/bug.h> for the BUG infrastructure and yet we still get a compile fail! [We've not kernel.h for BUILD_BUG_ON.] Ugh - very confusing for someone who is new to kernel development. With the above in mind, the goals of this changeset are: 1) find and fix any include/*.h files that were relying on the implicit presence of BUG code. 2) find and fix any C files that were consuming kernel.h and hence relying on implicitly getting some/all BUG code. 3) Move the BUG related code living in kernel.h to <linux/bug.h> 4) remove the asm/bug.h from kernel.h to finally break the chain. During development, the order was more like 3-4, build-test, 1-2. But to ensure that git history for bisect doesn't get needless build failures introduced, the commits have been reorderd to fix the problem areas in advance. [1] https://lkml.org/lkml/2012/1/3/90 [2] https://lkml.org/lkml/2012/1/17/414" Fix up conflicts (new radeon file, reiserfs header cleanups) as per Paul and linux-next. * tag 'bug-for-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux: kernel.h: doesn't explicitly use bug.h, so don't include it. bug: consolidate BUILD_BUG_ON with other bug code BUG: headers with BUG/BUG_ON etc. need linux/bug.h bug.h: add include of it to various implicit C users lib: fix implicit users of kernel.h for TAINT_WARN spinlock: macroize assert_spin_locked to avoid bug.h dependency x86: relocate get/set debugreg fcns to include/asm/debugreg. |
||
---|---|---|
.. | ||
agp.h | ||
apb.h | ||
apc.h | ||
asi.h | ||
asm-offsets.h | ||
asm.h | ||
asmmacro.h | ||
atomic_32.h | ||
atomic_64.h | ||
atomic.h | ||
auxio_32.h | ||
auxio_64.h | ||
auxio.h | ||
auxvec.h | ||
backoff.h | ||
bbc.h | ||
bitext.h | ||
bitops_32.h | ||
bitops_64.h | ||
bitops.h | ||
bitsperlong.h | ||
btext.h | ||
btfixup.h | ||
bug.h | ||
bugs.h | ||
byteorder.h | ||
cache.h | ||
cacheflush_32.h | ||
cacheflush_64.h | ||
cacheflush.h | ||
chafsr.h | ||
checksum_32.h | ||
checksum_64.h | ||
checksum.h | ||
chmctrl.h | ||
clock.h | ||
cmt.h | ||
compat_signal.h | ||
compat.h | ||
contregs.h | ||
cpudata_32.h | ||
cpudata_64.h | ||
cpudata.h | ||
cputime.h | ||
current.h | ||
cypress.h | ||
dcr.h | ||
dcu.h | ||
delay_32.h | ||
delay_64.h | ||
delay.h | ||
device.h | ||
display7seg.h | ||
dma-mapping.h | ||
dma.h | ||
ebus_dma.h | ||
ecc.h | ||
eeprom.h | ||
elf_32.h | ||
elf_64.h | ||
elf.h | ||
emergency-restart.h | ||
envctrl.h | ||
errno.h | ||
estate.h | ||
fb.h | ||
fbio.h | ||
fcntl.h | ||
fhc.h | ||
fixmap.h | ||
floppy_32.h | ||
floppy_64.h | ||
floppy.h | ||
fpumacro.h | ||
ftrace.h | ||
futex_32.h | ||
futex_64.h | ||
futex.h | ||
gpio.h | ||
hardirq_32.h | ||
hardirq_64.h | ||
hardirq.h | ||
head_32.h | ||
head_64.h | ||
head.h | ||
highmem.h | ||
hugetlb.h | ||
hvtramp.h | ||
hw_irq.h | ||
hypervisor.h | ||
ide.h | ||
idprom.h | ||
intr_queue.h | ||
io_32.h | ||
io_64.h | ||
io-unit.h | ||
io.h | ||
ioctl.h | ||
ioctls.h | ||
iommu_32.h | ||
iommu_64.h | ||
iommu.h | ||
ipcbuf.h | ||
irq_32.h | ||
irq_64.h | ||
irq.h | ||
irqflags_32.h | ||
irqflags_64.h | ||
irqflags.h | ||
jsflash.h | ||
jump_label.h | ||
Kbuild | ||
kdebug_32.h | ||
kdebug_64.h | ||
kdebug.h | ||
kgdb.h | ||
kmap_types.h | ||
kprobes.h | ||
ldc.h | ||
leon_amba.h | ||
leon_pci.h | ||
leon.h | ||
linkage.h | ||
lsu.h | ||
machines.h | ||
mbus.h | ||
mc146818rtc_32.h | ||
mc146818rtc_64.h | ||
mc146818rtc.h | ||
mdesc.h | ||
memctrl.h | ||
memreg.h | ||
mman.h | ||
mmu_32.h | ||
mmu_64.h | ||
mmu_context_32.h | ||
mmu_context_64.h | ||
mmu_context.h | ||
mmu.h | ||
mmzone.h | ||
module.h | ||
mpmbox.h | ||
msgbuf.h | ||
msi.h | ||
mutex.h | ||
mxcc.h | ||
nmi.h | ||
ns87303.h | ||
obio.h | ||
openprom.h | ||
openpromio.h | ||
oplib_32.h | ||
oplib_64.h | ||
oplib.h | ||
page_32.h | ||
page_64.h | ||
page.h | ||
param.h | ||
parport.h | ||
pbm.h | ||
pci_32.h | ||
pci_64.h | ||
pci.h | ||
pcic.h | ||
pcr.h | ||
percpu_32.h | ||
percpu_64.h | ||
percpu.h | ||
perf_event.h | ||
perfctr.h | ||
pgalloc_32.h | ||
pgalloc_64.h | ||
pgalloc.h | ||
pgtable_32.h | ||
pgtable_64.h | ||
pgtable.h | ||
pgtsrmmu.h | ||
pgtsun4c.h | ||
pil.h | ||
poll.h | ||
posix_types.h | ||
processor_32.h | ||
processor_64.h | ||
processor.h | ||
prom.h | ||
psr.h | ||
psrcompat.h | ||
pstate.h | ||
ptrace.h | ||
resource.h | ||
ross.h | ||
rwsem.h | ||
sbi.h | ||
scatterlist.h | ||
scratchpad.h | ||
seccomp.h | ||
sections.h | ||
sembuf.h | ||
serial.h | ||
setup.h | ||
sfafsr.h | ||
sfp-machine_32.h | ||
sfp-machine_64.h | ||
sfp-machine.h | ||
shmbuf.h | ||
shmparam_32.h | ||
shmparam_64.h | ||
shmparam.h | ||
sigcontext.h | ||
siginfo.h | ||
signal.h | ||
smp_32.h | ||
smp_64.h | ||
smp.h | ||
smpprim.h | ||
socket.h | ||
sockios.h | ||
sparsemem.h | ||
spinlock_32.h | ||
spinlock_64.h | ||
spinlock_types.h | ||
spinlock.h | ||
spitfire.h | ||
stacktrace.h | ||
starfire.h | ||
stat.h | ||
statfs.h | ||
string_32.h | ||
string_64.h | ||
string.h | ||
sunbpp.h | ||
swab.h | ||
swift.h | ||
syscall.h | ||
syscalls.h | ||
sysen.h | ||
system_32.h | ||
system_64.h | ||
system.h | ||
termbits.h | ||
termios.h | ||
thread_info_32.h | ||
thread_info_64.h | ||
thread_info.h | ||
timer_32.h | ||
timer_64.h | ||
timer.h | ||
timex_32.h | ||
timex_64.h | ||
timex.h | ||
tlb_32.h | ||
tlb_64.h | ||
tlb.h | ||
tlbflush_32.h | ||
tlbflush_64.h | ||
tlbflush.h | ||
topology_32.h | ||
topology_64.h | ||
topology.h | ||
trap_block.h | ||
traps.h | ||
tsb.h | ||
tsunami.h | ||
ttable.h | ||
turbosparc.h | ||
types.h | ||
uaccess_32.h | ||
uaccess_64.h | ||
uaccess.h | ||
uctx.h | ||
unaligned.h | ||
unistd.h | ||
upa.h | ||
user.h | ||
utrap.h | ||
vac-ops.h | ||
vaddrs.h | ||
vga.h | ||
viking.h | ||
vio.h | ||
visasm.h | ||
watchdog.h | ||
winmacro.h | ||
xor_32.h | ||
xor_64.h | ||
xor.h |