Commit Graph

253675 Commits

Author SHA1 Message Date
martin 9d3379bc69 Tickets #1803 - #1805 2023-02-24 14:21:22 +00:00
martin ca665e0521 Pull up following revision(s) (requested by msaitoh in ticket #1805):
sys/dev/ata/satavar.h: revision 1.10
	sys/dev/ata/sata_subr.c: revision 1.24

split the port status reporting to new function sata_interpret_det()
so it can be called separately from sata_reset_interface()

do not treat PHY offline as an error, it's pretty normal when there
is no device actually connected

debugging aid for PR kern/52372
2023-02-24 14:19:55 +00:00
martin 03b22ba802 Pull up following revision(s) (requested by msaitoh in ticket #1804):
sys/kern/subr_prf.c: revision 1.171

Make identification of accounted aprint_error()s possible by putting a
big ugly "autoconfiguration error: " in the log when they occur.
2023-02-24 14:17:18 +00:00
martin 0eb4fa1f8c Pull up following revision(s) (requested by abs in ticket #1803):
sys/arch/amiga/stand/loadbsd/loadbsd.c: revision 1.37
	distrib/amiga/stand/loadbsd.uue: revision 1.3
	sys/arch/amiga/stand/loadbsd/Makefile: revision 1.4
	sys/arch/amiga/stand/loadbsd/README: revision 1.5

Update loadbsd source and distribution binary to version 3.2.

Including the following changes by Gunther Nikl:
- Added detection of A600.
- Fix handling of multiple -n options.
Make it compile with recent AmigaOS gcc ports (for example gcc6), as
older ports no longer work with current NetBSD header files.
2023-02-24 13:57:19 +00:00
martin 0961ae330a Tickets #1798 - #1802 2023-02-22 19:57:50 +00:00
martin 0a59059961 Pull up following revision(s) (requested by riastradh in ticket #1802):
sys/net/bpf.c: revision 1.247 (manually merged)

bpf(4): Reject bogus timeout values before arithmetic overflows.
2023-02-22 19:51:47 +00:00
martin 667a9fdac4 Pull up following revision(s) (requested by riastradh in ticket #1800):
etc/ssh/Makefile: revision 1.4
	usr.bin/mail/Makefile: revision 1.41
	external/ibm-public/postfix/etc/Makefile: revision 1.2
	etc/bluetooth/Makefile: revision 1.6
	crypto/external/bsd/openssh/bin/Makefile: revision 1.5
	etc/root/Makefile: revision 1.5
	etc/iscsi/Makefile: revision 1.4

/root: Install .cshrc and .profile links with the same mode.

Previously we would:

1. Install /root/.cshrc and /root/.profile with mode FILESMODE=644 as
   requested in src/etc/root/Makefile and as echoed in
   /etc/mtree/special.
2. Create hard links at /.cshrc and /.profile through CONFIGLINKS.
3. Because LINKSMODE was unset and defaults to NOBINMODE=444, change
   the mode to 444.

This scenario is confusing, and mtree objects to it, which is bad for
warning fatigue in a security-relevant mechanism.  (There are also
several other files mtree objects to out of the box -- we should fix
those too.)

With this change we install the links with the same mode as the
original files, in agreement with the mtree.  The files, .cshrc and
.profile, are intended to be editable configuration files, so 644
makes sense while 444 makes no sense and gets in the way of editors
like vi.

Discussed on tech-userlevel:
https://mail-index.netbsd.org/tech-userlevel/2022/08/29/msg013498.html

etc: Fix permissions of various editable configuration files.

This way they match the mtree and make sense and don't cause editors
to ask to override read-only files when editing them.

Exception: Not sure /etc/bluetooth/protocols makes as much sense to
edit, but the mtree says 644, so if you want to change it, make sure
to change it in both places -- Makefile and mtree.

/etc/ssh: Install ssh_known_hosts with mode 644.
Makes it agree with the mtree and more convenient for admin to edit.
2023-02-22 19:32:22 +00:00
martin 4740d95204 Pull up following revision(s) (requested by riastradh in ticket #1799):
sys/arch/x86/x86/efi_machdep.c: revision 1.3
	(applied to sys/arch/x86/x86/efi.c)

x86/efi: Print uuids in slightly more standard notation.

Anyone need a spare hyphen?  We had a few extras, apparently.
2023-02-22 19:24:59 +00:00
martin b057c7015e Pull up following revision(s) (requested by riastradh in ticket #1801):
sys/net/route.c: revision 1.236

route(4): Work around deadlock in rt_free wait path.
PR kern/56844
2023-02-22 18:55:06 +00:00
martin 9e910f00b2 Pull up following revision(s) (requested by riastradh in ticket #1798):
tests/lib/libc/string/t_swab.c: revision 1.3
	lib/libc/string/swab.c: revision 1.20

swab(3): Rewrite this to be understandable.

And make the tests work, and exercise all lengths up to 100.
Evidently the previous definition, presumably tightly optimized for
1980s-era compilers and CPUs, was too hard to understand, because it
was incorrectly tested for two decades and broken for years.

PR lib/57141
2023-02-22 18:50:41 +00:00
martin 6fae7b34c1 Ticket #1797 2023-02-14 16:05:01 +00:00
martin 98450d91ee Tickets #1787 - #1796 2023-01-23 14:11:22 +00:00
martin 8b7a8532ba Pull up the following revisions, requested by msaitoh in ticket #1796:
sys/dev/pci/files.pci				1.442
	sys/dev/pci/ixgbe/ix_txrx.c			1.99-1.100
	sys/dev/pci/ixgbe/ixgbe.c			1.320-1.324 via patch
	sys/dev/pci/ixgbe/ixgbe_82598.c 		1.19
	sys/dev/pci/ixgbe/ixgbe_api.c			1.28
	sys/dev/pci/ixgbe/ixgbe_common.c		1.43
	sys/dev/pci/ixgbe/ixgbe_netbsd.h		1.17
	sys/dev/pci/ixgbe/ixv.c 			1.183

- Add an option for Tx to use deferred softint regardless of whether
  can get txq lock or not. It's off by default.
- Call txeof first, then rxeof for the consistency.
- Make three "Unsupported SFP+ module..." messages the same.
- KNF. Modify comment. Fix typo.
2023-01-23 14:07:24 +00:00
martin d573b15002 Pull up the following revisions, requested by msaitoh in ticket #1795:
sys/dev/pci/if_wm.c				1.764-1.767 via patch
	sys/dev/pci/if_wmreg.h				1.128

- Workaround for some hypervisor environments. The environments
  cannot stop e1000 interrupt immediately.
- Rename nq_txdesc' member "nqrx_ctx" to "nqtx_ctx". No functional
  change.
- Add comment. Modify comment.
- KNF.
2023-01-23 14:01:25 +00:00
martin e21097e50c Apply patch, requested by mrg in ticket #1794:
Adjust for upstream fixes for the following CVEs:

   CVE-2022-46285, CVE-2022-44617, CVE-2022-4883, CVE-2020-14363,
   CVE-2022-46340, CVE-2022-46341, CVE-2022-46342 CVE-2022-46343,
   CVE-2022-46344, CVE-2022-46283, CVE-2021-4008, CVE-2021-4009,
   CVE-2021-4010, CVE-2021-4011
2023-01-23 13:36:04 +00:00
martin 5d7d223aa0 Pull up following revision(s) (requested by uwe in ticket #1793):
usr.bin/locate/locate/updatedb.sh: revision 1.18

locate.updatedb: Add -- to the invocation of locate.code

A bigram can start with a dash/minus, don't let getopt misinterpret it
as an option.

From Hakan Engvall in PR misc/57191
2023-01-23 13:16:18 +00:00
martin 2fb2ae1bfb Pull up the following revisions, requested by msaitoh in ticket #1792:
usr.sbin/cpuctl/arch/i386.c                     1.129-1.135

- Print cpuid 7 sub-leaf 1 %ebx, %edx and sub-leaf 2 %edx.
- Add Raptor Lake and Sapphire Rapids.
- Modify messages a little.
2023-01-23 13:13:08 +00:00
martin 6c734793ef Pull up the following revisions, requested by msaitoh in ticket #1791:
sys/arch/x86/include/specialreg.h		1.193-1.198

- Add CPUID Fn0000_0006 %eax bit 24 IA32_THERM_INTERRUPT MSR bit 25
  Hardware Feedback Notification support.
- Add CPUID Fn0000_0007 %ecx bit 29 ENQCMD.
- Add CPUID Fn0000_0007 %edx bit 1 SGX-KEYS.
- Add CPUID Fn0000_0007 %edx bit 5 UINTR(User INTeRrupts).
- Add CPUID Fn0000_0007 %edx bit 11 RTM_ALWAYS_ABORT.
- Add CPUID Fn0000_0007 %edx bit 22 AMX_BF16.
- Add CPUID Fn0000_0007 %edx bit 23 AVX512_FP16.
- Add CPUID Fn0000_0007 %edx bit 24 AMX_TILE.
- Add CPUID Fn0000_0007 %edx bit 25 AMX_INT8.
- Add CPUID Fn0000_0007 sub-leaf 1 %edx bit 18 CET_SSS.
- Add CPUID Fn0000_0007 sub-leaf 2 %edx definitions.
- Add CPUID Fn0000_000d sub-leaf 1 %eax bit 4 XFD.
- Add CPUID Fn0000_001d Tile Information.
- Add CPUID Fn0000_001e TMUL Information.
- Add CPUID Fn8000_0007 %eax RAS capabilities.
- Add CPUID Fn8000_0008 %ebx BTC_NO,
- Add cpuid Fn8000_000a x2AVIC, VNMI, IBSVIRT and ROGPT.
- Add CPUID Fn8000_001b Instruction-Based Sampling.
- Add CPUID Fn8000_001e Processor Topology Information.
- Add CPUID Fn8000_001f %eax RPMQUERY, VmplSSS, TscAuxVirt,
  VmgexitParam, VirtualTomMsr, IbsVirtGuest, SmtProtection,
  vsmCommPageMSR and NestedVirtSnpMsr.
- Add CPUID Fn8000_0021 AMD Extended Features Identification 2.
- Add CPUID Fn8000_0022 AMD Extended Performance Monitoring and Debug.
- Rename HW_FEEDBACK to HWI (Hardware Feedback Interface).
- Rename TSX_FORCE_ABORT to RTM_FORCE_ABORT.
- Modify comment. Both Intel and AMD support CPUID Fn0000000b.
- Modify comment. Hybrid Information -> Native Model ID Information.
- Use __BIT(). Add comment. Whitespace fix.
2023-01-23 13:09:54 +00:00
martin 47e31f6c33 Pull up the following revisions, requested by msaitoh in ticket #1790:
sys/dev/pci/piixpm.c				1.66,1.68-1.72 via patch
	sys/dev/pci/piixpmreg.h 			1.13

Add support new AMD chipsets that do not have indirect access
I/O ports.
2023-01-23 12:46:14 +00:00
martin de1170c2ab Pull up following revision(s) (requested by msaitoh in ticket #1789):
sys/arch/x86/pci/amdzentemp.c: revision 1.16

match zen3 "cezanne" (ryzen 5000-series APU.)
2023-01-23 12:28:51 +00:00
martin 938cada538 Pull up following revision(s) (requested by msaitoh in ticket #1788):
sys/arch/x86/x86/procfs_machdep.c: revision 1.46

Add x2avic. Modify comment.
2023-01-23 12:25:06 +00:00
martin 102035218e Pull up the following revisions, requested by msaitoh in ticket #1787:
sys/dev/pci/xhci_pci.c				1.31 via patch
	sys/dev/usb/xhci.c				1.173-1.175
	sys/dev/usb/xhcivar.h				1.22

Support xHCI device which has USB 2 port only.
2023-01-23 12:10:12 +00:00
martin 17fb3867b4 Tickets #1784 - #1786 2023-01-19 10:59:09 +00:00
martin 1856abf7cd Pull up following revision(s) (requested by msaitoh in ticket #1786):
sys/dev/usb/usb.h: revision 1.121

Cast to uint32_t to avoid undefined behavior in UGETDW(). Found by kUBSan.
2023-01-19 10:57:50 +00:00
martin 99b041859d Pull up following revision(s) (requested by msaitoh in ticket #1785):
usr.bin/netstat/netstat.1: revision 1.76

Add note about "netstat -mssv".
2023-01-19 10:55:47 +00:00
martin 51e807d3b7 Pull up following revision(s) (requested by msaitoh in ticket #1784):
share/man/man4/lm.4: revision 1.38
	sys/dev/ic/nslm7x.c: revision 1.79
	sys/dev/isa/wbsio.c: revision 1.30
	sys/dev/isa/wbsioreg.h: revision 1.11

lm(4): Add Nuvoton NCT6797D support.
2023-01-19 10:41:58 +00:00
martin cf0318129e Ticket #1783 2023-01-18 19:35:44 +00:00
martin b0ee80189e Regen for ticket #1783 2023-01-18 19:32:33 +00:00
martin bd5329fdd6 Pull up following revision(s) (requested by msaitoh in ticket #1783):
sys/dev/pci/sdhc_pci.c: revision 1.20
	sys/dev/pci/pcidevs: revision 1.1469
	sys/dev/pci/pcidevs: revision 1.1470
	sys/dev/pci/pcidevs: revision 1.1471
	sys/dev/pci/pcidevs: revision 1.1472
	sys/dev/pci/pcidevs: revision 1.1473
	sys/dev/pci/pcidevs: revision 1.1474
	sys/dev/pci/pcidevs: revision 1.1475
	sys/dev/pci/pcidevs: revision 1.1476

Add some AMD 17h/9xh devices from OpenBSD.
Add AMD F17/Axh devices.
Add some Xeon Scalable devices from OpenBSD.
Update Intel Elkhart Lake devices.
Add Elkhart Lake Shared SRAM.
Fix typo. s/SSC/SCC/.
Fix typo. No functional change.
add Aquantia (Marvell) AQC113 ethernet devices and the variants
Add AMD Family 19h/1xh devices.
2023-01-18 19:31:43 +00:00
martin e3a3b9a0f2 Ticket #1782 2023-01-06 13:52:44 +00:00
martin bfd34f5e25 Pull up following revision(s) (requested by kre in ticket #1782):
lib/libc/gen/err.3: revision 1.23

Add errc() and verrc() to the list of functions which do not return,
but exit() instead.

This was omitted when the *c() set of functions were added in 2014.
2023-01-06 13:50:03 +00:00
martin 1480ed61ce Ticket #1780 2023-01-03 18:12:45 +00:00
martin 4df99ea2d5 Pull up following revision(s) (requested by nia in ticket #1780):
lib/libc/locale/setlocale.3: revision 1.22
	lib/libc/locale/setlocale.3: revision 1.23

setlocale.3: minor updates to reflect the current implementation

Reflect a couple of amendments noted by John Marino on tech-userlevel:
https://mail-index.netbsd.org/tech-userlevel/2021/10/19/msg013091.html

setlocale.3: Reflect state of NetBSD locale support in the 21st century

Don't use LC_COLLATE in a real code example, since a real call to set
LC_COLLATE will fail. Mention this.

Inconsistencies noticed by khw on IRC.
2023-01-03 18:11:51 +00:00
martin 5f9f2e0aac Ticket #1781 2023-01-03 16:44:26 +00:00
martin 86ca365b61 Pull up following revision(s) (requested by gutteridge in ticket #1781):
sys/conf/copyright: revision 1.21

Welcome to 2023.
2023-01-03 16:41:52 +00:00
martin 240c1fc796 Tickets #1778 and #1779 2022-10-27 16:19:25 +00:00
martin ab7b1b8402 Pull up following revision(s) (requested by kre in ticket #1779):
bin/sh/miscbltin.c: revision 1.51
	bin/sh/miscbltin.c: revision 1.52

PR bin/56972  Fix escape ('\') handling in sh read builtin.

In 1.35 (March 2005) (the big read fixup), most escape handling and IFS
processing in the read builtin was corrected.  However 2 cases were missed,
one is a word (something to be assigned to any variable but the last) in
which every character is escaped (the code was relying on a non-escaped char
to set the "in a word" status), and second trailing IFS whitespace at
the end of the line was being deleted, even if the chars had been escaped
(the escape chars are no longer present).

See the PR for more details (including the case that detected the problem).

After fixing this, I looked at the FreeBSD code (normally might do it
before, but these fixes were trivial) to check their implementation.

Their code does similar things to ours now does, but in a completely
different way, their read builtin is more complex than ours needs to
be (they handle more options).   For anyone tempted to simply incorporate
their code, note that it relies upon infrastructure changes elsewhere
in the shell, so would not be a simple cut and drop in exercise.

This needs pullups to -3 -4 -5 -6 -7 -8 and -9 (fortunately this is
happening before -10 is branched, so will never be broken this way there).

 -

Don't output the error for bad usage (no var name given)
after already writing the prompt (set with the -p option).

That results in nonsense like:
	$ read -p foo
	fooread: arg count

While here, improve the error message so it means something.

Now we will get:
$ read -p foo
read: variable name required
Usage: read [-r] [-p prompt] var...

[Detected by code reading while doing the work for the previous fix]
2022-10-27 16:16:50 +00:00
martin f63973ae9d Pull up following revision(s) (requested by ozaki-r in ticket #1778):
sys/netinet6/frag6.c: revision 1.76

frag6: don't use spin mutex for frag6_lock

frag6_lock is held during sending a packet (icmp6_error), so we must
not use a spin mutex because we can acquire sleep locks on sending
a packet.

Also we don't need to use spin mutex for frag6_lock anymore because
frag6_lock is now not used from hardware interrupt context.
2022-10-27 16:08:50 +00:00
martin 4217bdf6a3 Ticket #1777 2022-10-26 18:19:42 +00:00
martin 112296b860 Pull up the following revisions (catch up to -current), requested by kre
in ticket #1777:

	external/public-domain/tz/dist/SECURITY         up to 1.1.1.1
	external/public-domain/tz/dist/CONTRIBUTING     up to 1.1.1.7
	external/public-domain/tz/dist/Makefile         up to 1.1.1.33
	external/public-domain/tz/dist/NEWS             up to 1.1.1.38
	external/public-domain/tz/dist/README           up to 1.1.1.10
	external/public-domain/tz/dist/TZDATA_VERSION   up to 1.30
	external/public-domain/tz/dist/africa           up to 1.1.1.28
	external/public-domain/tz/dist/antarctica       up to 1.1.1.15
	external/public-domain/tz/dist/asia             up to 1.5
	external/public-domain/tz/dist/australasia      up to 1.5
	external/public-domain/tz/dist/backward         up to 1.5
	external/public-domain/tz/dist/backzone         up to 1.1.1.23
	external/public-domain/tz/dist/calendars        up to 1.1.1.2
	external/public-domain/tz/dist/checktab.awk     up to 1.1.1.11
	external/public-domain/tz/dist/etcetera         up to 1.1.1.6
	external/public-domain/tz/dist/europe           up to 1.1.1.34
	external/public-domain/tz/dist/leap-seconds.list up to 1.4
	external/public-domain/tz/dist/leapseconds      up to 1.4
	external/public-domain/tz/dist/northamerica     up to 1.1.1.30
	external/public-domain/tz/dist/southamerica     up to 1.1.1.20
	external/public-domain/tz/dist/theory.html      up to 1.1.1.15
	external/public-domain/tz/dist/version          up to 1.5
	external/public-domain/tz/dist/ziguard.awk      up to 1.1.1.9
	external/public-domain/tz/dist/zishrink.awk     up to 1.1.1.8
	external/public-domain/tz/dist/zone.tab         up to 1.1.1.22
	external/public-domain/tz/dist/zone1970.tab     up to 1.1.1.23
	distrib/sets/lists/base/mi			(apply patch)
	doc/3RDPARTY					(apply patch)

Updata tzdata to 2022e.
2022-10-26 18:16:42 +00:00
martin de64fbebdb Pull up following revision(s) (requested by msaitoh in ticket #1774):
share/man/man4/lm.4: revision 1.37
	sys/dev/isa/wbsio.c: revision 1.28
	sys/dev/ic/nslm7x.c: revision 1.78
	sys/dev/isa/wbsioreg.h: revision 1.10

Add Nuvoton NCT6799D support.
2022-10-15 10:52:16 +00:00
martin 533dfe6ed2 Tickets #1774 - #1776 2022-10-15 10:35:16 +00:00
martin f29381bfe5 Pull up the following (via patch), requested by msaitoh in ticket #1776:
sys/dev/pci/ichsmb.c			1.76-1.77

Add Intel 600 Series PCH support.
2022-10-15 10:33:42 +00:00
martin 6f62d1e621 Pull up following revision(s) (requested by msaitoh in ticket #1775):
sys/arch/x86/include/specialreg.h: revision 1.189
	usr.sbin/cpuctl/arch/i386.c: revision 1.128
	sys/arch/x86/include/specialreg.h: revision 1.190
	sys/arch/x86/include/specialreg.h: revision 1.191
	sys/arch/x86/include/specialreg.h: revision 1.192

s/shareing/sharing/. No functional change.

Add top-down slots event bit of architectural performance monitoring leaf.

Modify CPUID Fn0000000a %ebx's string. Add new string for %ecx.

Modify output of CPUID Fn0000000a.
old:
cpu0: Perfmon-eax 0x8300805<VERSION=0x5,GPCounter=0x8,GPBitwidth=0x30>
cpu0: Perfmon-eax 0x8300805<Vectorlen=0x8>
cpu0: Perfmon-edx 0x8604<FixedFunc=0x4,FFBitwidth=0x30,ANYTHREADDEPR>
new:
cpu0: Perfmon: Ver. 5
cpu0: Perfmon: General: bitwidth 48, 8 counters
cpu0: Perfmon: General: avail 0xff<CORECYCL,INST,REFCYCL,LLCREF,LLCMISS,BRINST>
cpu0: Perfmon: General: avail 0xff<BRMISPR,TOPDOWNSLOT>
cpu0: Perfmon: Fixed: bitwidth 48, 4 counters
cpu0: Perfmon: Fixed: avail 0xf<INST,CLK_CORETHREAD,CLK_REF_TSC,TOPDOWNSLOT>

Update some AMD CPUID bits:
- Rename FSREP_MOV to FSRM.
- Add Memory Bandwidth Enforcement (MBE)
- Add AMD's PPIN. Rename CPUID_SEF_PPIN to CPUID_SEF_INTEL_PPIN.
- Add Collaborative Processor Performance Control (CPPC).
- Add HOST_MCE_OVERRIDE.
- Add some unknown bits as Bxx.
- Add comments.
- Use __BIT().
2022-10-15 10:16:07 +00:00
martin bc082c6e21 Tickets #1771 - #1773 2022-10-11 18:24:18 +00:00
martin 1c848b0cd3 Pull up following revision(s) (requested by msaitoh in ticket #1773):
share/man/man4/man4.x86/amdsmn.4		1.4,1.5
	share/man/man4/man4.x86/amdzentemp.4		1.7
	sys/arch/x86/pci/amdsmn.c			1.7-1.9,1.13,1.14
	sys/arch/x86/pci/amdzentemp.c			1.8-1.10,1.12-1.15

adjust for possible 49K offset

presence of this offset is indicated by a set 19th bit which is shifted away
this brings the temperature to "normal" levels on my ryzen 2700
(I assumed the same 49K offset as the k10temp project)

correct for known temperature bias values.

Update to support Family 15h Model 60 temperature sensors.

Changes based on FreeBSD amdtemp driver changes by Conrad Meyer.

XXX: Some code duplication between this driver and amdtemp as
     parts of the 15h refresh code share more in common with
     older CPUs while accessing the device more like 17h.

Don't mix sign and unsigned operands. Just use size_t for the loop.

Apply previous change ("Don't mix sign and unsigned operands. Just use
size_t for the loop.") to another loop variable.

amdzentemp(4): Add Zen 3 support.

amdzentemp(4): Add support for per CCD temperature sensor from FreeBSD.

Fix build failure on i386.

Rename for AMD F15/6X device. No functional change.
amdsmn(4),amdzentemp(4): Add support for 17h/6xh and 19h/6xh.

Note that these drivers are present on some newer AMD Family 15h
processors.

amdsmn.4: Now support AMD Family 19h processors.
2022-10-11 18:22:44 +00:00
martin e236846411 Pull up following revision(s) (requested by msaitoh in ticket #1772):
sys/arch/x86/include/cpu_ucode.h: revision 1.5
	sys/arch/x86/x86/cpu_ucode_intel.c: revision 1.19
	sys/arch/x86/x86/cpu_ucode_intel.c: revision 1.20

Add missing newline in a message. KNF.
Verify checksum of the extended signature table.
2022-10-11 18:07:11 +00:00
martin 6410d46501 regen (Ticket #1771) 2022-10-11 17:58:16 +00:00
martin 3711bb417a Pull up the following revisions, requested by msaitoh in ticket #1771:
sys/dev/pci/pcidevs			1.1461-1.1468 via patch

- Add several samsung nvme entries.
- Add more Alder Lake devices.
- Jasper Lake Intel Trace Hub on Compute Die is not 0x4da6 but 0x4e29.
- Add Intel Core 8G (8core, H, Halo) Host Bridge, DRAM.
- Add AMD 19h/6xh Root Complex.
- Add AMD FCH SATA Controller D.
- Add NVIDIA GeForce GTX 770.
- Sort by number.
2022-10-11 17:57:17 +00:00
martin b14f86f1b1 Pull up following revision(s) (requested by msaitoh in ticket #1770):
sys/net/if_ethersubr.c: revision 1.254

Fix a bug in the VLAN path: there's an inverted logic, the mbuf needs to
be bigger than struct ether_vlan_header, not smaller.

Meanwhile add a KASSERT in the LLC path.
2022-10-10 16:09:12 +00:00