View | Details | Raw Unified | Return to bug 269753 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/amd64/conf/FIRECRACKER (-1 / +1 lines)
Lines 173-179 envvar hw.broken_txfifo="1" Link Here
173
# skip that; later in the boot process we have other timecounters.
173
# skip that; later in the boot process we have other timecounters.
174
envvar	machdep.disable_tsc_calibration="1"
174
envvar	machdep.disable_tsc_calibration="1"
175
175
176
# Provide bug-for-bug compatiblity with Linux in MP Table searching
176
# Provide bug-for-bug compatibility with Linux in MP Table searching
177
# and parsing.  Firecracker relies on these bugs.
177
# and parsing.  Firecracker relies on these bugs.
178
options		MPTABLE_LINUX_BUG_COMPAT
178
options		MPTABLE_LINUX_BUG_COMPAT
179
179
(-)b/sys/netpfil/ipfw/ip_fw2.c (-1 / +1 lines)
Lines 2002-2008 do { \ Link Here
2002
					    >> 8) | (offset != 0));
2002
					    >> 8) | (offset != 0));
2003
				} else {
2003
				} else {
2004
					/*
2004
					/*
2005
					 * Compatiblity: historically bare
2005
					 * Compatibility: historically bare
2006
					 * "frag" would match IPv6 fragments.
2006
					 * "frag" would match IPv6 fragments.
2007
					 */
2007
					 */
2008
					match = (cmd->arg1 == 0x1 &&
2008
					match = (cmd->arg1 == 0x1 &&
(-)b/sys/sys/_endian.h (-1 / +1 lines)
Lines 36-42 Link Here
36
#error "sys/_endian.h should not be included directly"
36
#error "sys/_endian.h should not be included directly"
37
#endif
37
#endif
38
38
39
/* BSD Compatiblity */
39
/* BSD Compatibility */
40
#define	_BYTE_ORDER	__BYTE_ORDER__
40
#define	_BYTE_ORDER	__BYTE_ORDER__
41
41
42
/*
42
/*
(-)b/sys/x86/x86/mptable.c (-1 / +1 lines)
Lines 1264-1270 mptable_host_res_handler(ext_entry_ptr entry, void *arg) Link Here
1264
			break;
1264
			break;
1265
		default:
1265
		default:
1266
			printf(
1266
			printf(
1267
    "MPTable: Unknown compatiblity address space range for bus %u: %d\n",
1267
    "MPTable: Unknown compatibility address space range for bus %u: %d\n",
1268
			    cbasm->bus_id, cbasm->predefined_range);
1268
			    cbasm->bus_id, cbasm->predefined_range);
1269
			return;
1269
			return;
1270
		}
1270
		}

Return to bug 269753