From fc713515896de6dbbbcc61a8be54589bc657aefd Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Tue, 31 Mar 2020 23:39:20 +0200 Subject: Fix build with -fno-common which will be the default in gcc-10. * device/io_req.h (io_inband_cache): Add extern qualifier. * device/tty.h (tthiwat, ttlowat): Likewise. * i386/i386/db_machdep.h (ddb_regs): Likewise. * kern/cpu_number.h (master_cpu): Likewise. * kern/time_stamp.h (ts_tick_count): Likewise. * linux/src/drivers/scsi/in2000.h (proc_scsi_in2000): Likewise. * device/ds_routines.c (io_inband_cache): New variable. * i386/i386/db_interface.c (ddb_regs): Likewise. * kern/processor.c (master_cpu): Likewise. * kern/time_stamp.c (ts_tick_count): Likewise. * linux/pcmcia-cs/modules/pci_fixup.c (pci_root): Remove variable. --- device/ds_routines.c | 1 + 1 file changed, 1 insertion(+) (limited to 'device/ds_routines.c') diff --git a/device/ds_routines.c b/device/ds_routines.c index 1fabec3c..fc051e8f 100644 --- a/device/ds_routines.c +++ b/device/ds_routines.c @@ -132,6 +132,7 @@ static struct device_emulation_ops *emulation_list[] = static struct vm_map device_io_map_store; vm_map_t device_io_map = &device_io_map_store; +struct kmem_cache io_inband_cache; #define NUM_EMULATION (sizeof (emulation_list) / sizeof (emulation_list[0])) -- cgit v1.2.3