<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/beri/virtio/network, branch releng/14.2</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>sys: Remove $FreeBSD$: one-line .c pattern</title>
<updated>2023-08-16T17:54:36+00:00</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2023-08-16T17:54:36+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=685dc743dc3b5645e34836464128e1c0558b404b'/>
<id>685dc743dc3b5645e34836464128e1c0558b404b</id>
<content type='text'>
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
</pre>
</div>
</content>
</entry>
<entry>
<title>Mechanically convert vtbe(4) to IfAPI</title>
<updated>2023-02-07T19:16:18+00:00</updated>
<author>
<name>Justin Hibbits</name>
<email>jhibbits@FreeBSD.org</email>
</author>
<published>2022-08-19T19:47:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b34a60c54f31512fe27913acd371183a9a52c7f4'/>
<id>b34a60c54f31512fe27913acd371183a9a52c7f4</id>
<content type='text'>
Reviewed by:	zlei
Sponsored by:	Juniper Networks, Inc.
Differential Revision: https://reviews.freebsd.org/D37844
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed by:	zlei
Sponsored by:	Juniper Networks, Inc.
Differential Revision: https://reviews.freebsd.org/D37844
</pre>
</div>
</content>
</entry>
<entry>
<title>beri: Remove unused devclass arguments to DRIVER_MODULE.</title>
<updated>2022-05-10T17:21:39+00:00</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2022-05-10T17:21:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2ded2b9a2b4f30a02f798c47280840837b1bf3ff'/>
<id>2ded2b9a2b4f30a02f798c47280840837b1bf3ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>if_vtbe: Add missing includes to fix build</title>
<updated>2021-03-08T20:48:48+00:00</updated>
<author>
<name>Jessica Clarke</name>
<email>jrtc27@FreeBSD.org</email>
</author>
<published>2021-03-08T20:47:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f2f8405cf6b50a9d91acc02073abf1062d9d34f4'/>
<id>f2f8405cf6b50a9d91acc02073abf1062d9d34f4</id>
<content type='text'>
PR:		254137
Reported by:	Mina Galić &lt;me@igalic.co&gt;
MFC after:	3 days
Fixes:		f8bc74e2f4a5 ("tap: add support for virtio-net offloads")
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR:		254137
Reported by:	Mina Galić &lt;me@igalic.co&gt;
MFC after:	3 days
Fixes:		f8bc74e2f4a5 ("tap: add support for virtio-net offloads")
</pre>
</div>
</content>
</entry>
<entry>
<title>beri: clean up empty lines in .c and .h files</title>
<updated>2020-09-01T21:42:21+00:00</updated>
<author>
<name>Mateusz Guzik</name>
<email>mjg@FreeBSD.org</email>
</author>
<published>2020-09-01T21:42:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=dcc016d1736d4cc08a49ef0d68246f8fb2b72547'/>
<id>dcc016d1736d4cc08a49ef0d68246f8fb2b72547</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Although most of the NIC drivers are epoch ready, due to peer pressure</title>
<updated>2020-02-24T21:07:30+00:00</updated>
<author>
<name>Gleb Smirnoff</name>
<email>glebius@FreeBSD.org</email>
</author>
<published>2020-02-24T21:07:30+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e87c4940156c9a218cab4fd35f4d487dc57e7aa3'/>
<id>e87c4940156c9a218cab4fd35f4d487dc57e7aa3</id>
<content type='text'>
switch over to opt-in instead of opt-out for epoch.

Instead of IFF_NEEDSEPOCH, provide IFF_KNOWSEPOCH. If driver marks
itself with IFF_KNOWSEPOCH, then ether_input() would not enter epoch
when processing its packets.

Now this will create recursive entrance in epoch in &gt;90% network
drivers, but will guarantee safeness of the transition.

Mark several tested drivers as IFF_KNOWSEPOCH.

Reviewed by:		hselasky, jeff, bz, gallatin
Differential Revision:	https://reviews.freebsd.org/D23674
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
switch over to opt-in instead of opt-out for epoch.

Instead of IFF_NEEDSEPOCH, provide IFF_KNOWSEPOCH. If driver marks
itself with IFF_KNOWSEPOCH, then ether_input() would not enter epoch
when processing its packets.

Now this will create recursive entrance in epoch in &gt;90% network
drivers, but will guarantee safeness of the transition.

Mark several tested drivers as IFF_KNOWSEPOCH.

Reviewed by:		hselasky, jeff, bz, gallatin
Differential Revision:	https://reviews.freebsd.org/D23674
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce flag IFF_NEEDSEPOCH that marks Ethernet interfaces that</title>
<updated>2020-01-23T01:41:09+00:00</updated>
<author>
<name>Gleb Smirnoff</name>
<email>glebius@FreeBSD.org</email>
</author>
<published>2020-01-23T01:41:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0921628ddce1c29441ddb694e04e9c1e9fe356c8'/>
<id>0921628ddce1c29441ddb694e04e9c1e9fe356c8</id>
<content type='text'>
supposedly may call into ether_input() without network epoch.

They all need to be reviewed before 13.0-RELEASE.  Some may need
be fixed.  The flag is not planned to be used in the kernel for
a long time.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
supposedly may call into ether_input() without network epoch.

They all need to be reviewed before 13.0-RELEASE.  Some may need
be fixed.  The flag is not planned to be used in the kernel for
a long time.
</pre>
</div>
</content>
</entry>
<entry>
<title>o Switch to use non-mergeable RX buffers to avoid mbuf adjustment needs</title>
<updated>2015-01-05T16:43:22+00:00</updated>
<author>
<name>Ruslan Bukin</name>
<email>br@FreeBSD.org</email>
</author>
<published>2015-01-05T16:43:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1aac28e753967c1154100cd3d344deaf89d038f7'/>
<id>1aac28e753967c1154100cd3d344deaf89d038f7</id>
<content type='text'>
o Operate with copy of iov as we expect later it was not modified
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
o Operate with copy of iov as we expect later it was not modified
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dev/virtio/virtio.h include from BERI VirtIO</title>
<updated>2014-12-29T00:35:44+00:00</updated>
<author>
<name>Bryan Venteicher</name>
<email>bryanv@FreeBSD.org</email>
</author>
<published>2014-12-29T00:35:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f83577167c89aff02b68c7c9022006cb45a30df1'/>
<id>f83577167c89aff02b68c7c9022006cb45a30df1</id>
<content type='text'>
This header file contains prototypes and defines that only make
sense to the guest VirtIO device drivers.

Reviewed by:	br
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This header file contains prototypes and defines that only make
sense to the guest VirtIO device drivers.

Reviewed by:	br
</pre>
</div>
</content>
</entry>
<entry>
<title>o Add BERI Virtio Networking Frontend (if_vtbe)</title>
<updated>2014-12-09T16:39:21+00:00</updated>
<author>
<name>Ruslan Bukin</name>
<email>br@FreeBSD.org</email>
</author>
<published>2014-12-09T16:39:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a8098016f1a2845c2da844ab9614c2f0125448f0'/>
<id>a8098016f1a2845c2da844ab9614c2f0125448f0</id>
<content type='text'>
o Move similar block/networking methods to common file
o Follow r275640 and correct MMIO registers width
o Pass value to MMIO platform_note method.

Sponsored by:	DARPA, AFRL
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
o Move similar block/networking methods to common file
o Follow r275640 and correct MMIO registers width
o Pass value to MMIO platform_note method.

Sponsored by:	DARPA, AFRL
</pre>
</div>
</content>
</entry>
</feed>
