Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Mar 2024 04:40:46 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 465fe46da510 - stable/14 - arm64: Add netmap(4) to default kernel config
Message-ID:  <202403090440.4294ekJ1030899@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=465fe46da51080950bf0063f984c52b8cf6fb144

commit 465fe46da51080950bf0063f984c52b8cf6fb144
Author:     Daniel Roethlisberger <daniel@roe.ch>
AuthorDate: 2024-02-06 15:26:13 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-03-09 04:28:01 +0000

    arm64: Add netmap(4) to default kernel config
    
    Allows the development, testing and deployment of netmap(4)-based code
    on arm64 without having to recompile the kernel.  netmap(4) is already
    in the amd64 and powerpc64 default configs, so it does not seem
    unreasonable to also provide it on arm64 by default.
    
    Note that netmap(4) is useful even on systems without NIC that fully
    support it.
    
    Reviewed by:    vmaffione
    MFC after:      1 month
    Differential Revision:  https://reviews.freebsd.org/D43702
    
    (cherry picked from commit df64d7c8c82d59958cb546b23ba240ab97dc5033)
---
 sys/arm64/conf/std.dev | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys/arm64/conf/std.dev b/sys/arm64/conf/std.dev
index 74d2407e0aec..0c0ede38ed2b 100644
--- a/sys/arm64/conf/std.dev
+++ b/sys/arm64/conf/std.dev
@@ -87,6 +87,9 @@ device		miibus			# MII bus support
 # Note that 'bpf' is required for DHCP.
 device		bpf		# Berkeley packet filter
 
+# Netmap provides direct access to TX/RX rings on supported NICs
+device		netmap			# netmap(4) support
+
 # USB support
 options 	USB_DEBUG		# enable debug msgs
 options 	USB_HOST_ALIGN=64	# Align usb buffers to cache line size.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403090440.4294ekJ1030899>