git: da2dfec8f752 - stable/13 - Add RELNOTES entry for AES-GCM in armv8crypto(4)

2021-01-25 Thread Oleksandr Tymoshenko
The branch stable/13 has been updated by gonzo: URL: https://cgit.FreeBSD.org/src/commit/?id=da2dfec8f752f0ebde7851644d074678cb9470cf commit da2dfec8f752f0ebde7851644d074678cb9470cf Author: Oleksandr Tymoshenko AuthorDate: 2021-01-26 04:50:26 + Commit: Oleksandr Tymoshenko CommitDa

git: 25cdacf79b06 - main - Import sqlite 3.34.1 (3340100).

2021-01-25 Thread Cy Schubert
The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=25cdacf79b06356c929e59d5074d26c9dac41bdf commit 25cdacf79b06356c929e59d5074d26c9dac41bdf Author: Cy Schubert AuthorDate: 2021-01-25 17:45:04 + Commit: Cy Schubert CommitDate: 2021-01-26 04:24:44 +0

git: 70cdab054c8f - stable/12 - rctl(4): support throttling resource usage to 0

2021-01-25 Thread Jason A. Harmening
The branch stable/12 has been updated by jah: URL: https://cgit.FreeBSD.org/src/commit/?id=70cdab054c8ffe7f5561ab8f31db33ee62d12c9c commit 70cdab054c8ffe7f5561ab8f31db33ee62d12c9c Author: Jason A. Harmening AuthorDate: 2020-12-30 23:29:44 + Commit: Jason A. Harmening CommitDate: 20

Re: git: 83edbc3cb54f - main - ipfilter: Retire pre-standard C support.

2021-01-25 Thread Cy Schubert
In message , Philip Paeps writes: > On 2021-01-25 22:47:11 (+), Cy Schubert wrote: > >ipfilter: Retire pre-standard C support. > > > >All C compilers in 2021 support standard C and architectures that did > >not were retired long ago. Simplify by removing now redundant > >pre-sta

Re: git: 83edbc3cb54f - main - ipfilter: Retire pre-standard C support.

2021-01-25 Thread Philip Paeps
On 2021-01-25 22:47:11 (+), Cy Schubert wrote: ipfilter: Retire pre-standard C support. All C compilers in 2021 support standard C and architectures that did not were retired long ago. Simplify by removing now redundant pre-standard C code. [...] #ifndef __P -# ifdef __STDC_

git: b42a2ea5589f - main - Remove ndis(4) remnants from kernel configs

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=b42a2ea5589f86911643b3ce1ebeace5d1e2c1eb commit b42a2ea5589f86911643b3ce1ebeace5d1e2c1eb Author: Mateusz Guzik AuthorDate: 2021-01-26 00:04:13 + Commit: Mateusz Guzik CommitDate: 2021-01-26 00:04:

Re: git: 1fc148624f50 - main - Fix build following bfc99943b04b46a6c1c885ce7bcc6f235b7422aa.

2021-01-25 Thread Cy Schubert
No worries. I've committed an options change to the wpa_supplicant port as well and will push (git svn dcommit) it next time I get a chance. I'll need to think about moving build_config.h from contrib to usr.sbin/wpa to avoid confusing people when merging updates from the vendor. Simpler is be

Re: git: 054ce2b03710 - main - atomic: add stub atomic_load_consume_ptr

2021-01-25 Thread Jessica Clarke
On 25 Jan 2021, at 22:42, Mateusz Guzik wrote: > > The branch main has been updated by mjg: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=054ce2b0371042c0dbc4b3ab1d7e7795ad75d51e > > commit 054ce2b0371042c0dbc4b3ab1d7e7795ad75d51e > Author: Mateusz Guzik > AuthorDate: 2021-01-25 20:0

Re: git: 1fc148624f50 - main - Fix build following bfc99943b04b46a6c1c885ce7bcc6f235b7422aa.

2021-01-25 Thread Brooks Davis
Thanks. I'd done a clean build in CI where wpa supplicant built so I'm not sure how I missed this. -- Brooks On Mon, Jan 25, 2021 at 10:47:12PM +, Cy Schubert wrote: > The branch main has been updated by cy: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=1fc148624f50cbf93365f6d56c6587a

Re: git: 83edbc3cb54f - main - ipfilter: Retire pre-standard C support.

2021-01-25 Thread Cy Schubert
In message , Jessica Clarke w rites: > Hi, > > On 25 Jan 2021, at 22:47, Cy Schubert wrote: > > > > diff --git a/contrib/ipfilter/ipf.h b/contrib/ipfilter/ipf.h > > index 05dcfa4afd64..834ba83f51f0 100644 > > --- a/contrib/ipfilter/ipf.h > > +++ b/contrib/ipfilter/ipf.h > > @@ -73,15 +73,7 @@ >

Re: git: cc96f92a570e - main - atomic: make atomic_store_ptr type-aware

2021-01-25 Thread Mateusz Guzik
On 1/25/21, Jessica Clarke wrote: > On 25 Jan 2021, at 22:42, Mateusz Guzik wrote: >> index a3548977b940..4c29d132c369 100644 >> --- a/sys/sys/atomic_common.h >> +++ b/sys/sys/atomic_common.h >> @@ -58,7 +58,7 @@ >> #define atomic_store_long(p, v) \ >> (*(volatile u_long *)(p) =

Re: git: cc96f92a570e - main - atomic: make atomic_store_ptr type-aware

2021-01-25 Thread Jessica Clarke
On 25 Jan 2021, at 22:42, Mateusz Guzik wrote: > index a3548977b940..4c29d132c369 100644 > --- a/sys/sys/atomic_common.h > +++ b/sys/sys/atomic_common.h > @@ -58,7 +58,7 @@ > #define atomic_store_long(p, v) \ > (*(volatile u_long *)(p) = (u_long)(v)) > #define atomic_store_

Re: git: 83edbc3cb54f - main - ipfilter: Retire pre-standard C support.

2021-01-25 Thread Jessica Clarke
Hi, On 25 Jan 2021, at 22:47, Cy Schubert wrote: > > diff --git a/contrib/ipfilter/ipf.h b/contrib/ipfilter/ipf.h > index 05dcfa4afd64..834ba83f51f0 100644 > --- a/contrib/ipfilter/ipf.h > +++ b/contrib/ipfilter/ipf.h > @@ -73,15 +73,7 @@ > #include "opts.h" > > #ifndef __P > -# ifdef __STDC__

git: 1fc148624f50 - main - Fix build following bfc99943b04b46a6c1c885ce7bcc6f235b7422aa.

2021-01-25 Thread Cy Schubert
The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=1fc148624f50cbf93365f6d56c6587a7d268195b commit 1fc148624f50cbf93365f6d56c6587a7d268195b Author: Cy Schubert AuthorDate: 2021-01-25 22:34:22 + Commit: Cy Schubert CommitDate: 2021-01-25 22:46:45 +0

git: 83edbc3cb54f - main - ipfilter: Retire pre-standard C support.

2021-01-25 Thread Cy Schubert
The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=83edbc3cb54fba6b37a68270c232df7b785bd222 commit 83edbc3cb54fba6b37a68270c232df7b785bd222 Author: Cy Schubert AuthorDate: 2021-01-15 04:32:16 + Commit: Cy Schubert CommitDate: 2021-01-25 22:46:45 +0

git: e7cf562a40fc - main - cache: change ->v_cache_dd synchronisation rules

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=e7cf562a40fc093df054bd7fa6f34746069a984a commit e7cf562a40fc093df054bd7fa6f34746069a984a Author: Mateusz Guzik AuthorDate: 2021-01-25 20:49:09 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:41:

git: 6f0842764946 - main - cache: make ->v_cache_dd accesses atomic-clean for lockless usage

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=6f0842764946ed57382293cc3361b86955308084 commit 6f0842764946ed57382293cc3361b86955308084 Author: Mateusz Guzik AuthorDate: 2021-01-25 20:29:54 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:41:

git: ffcf8f97f8a8 - main - cache: store vnodes in local vars in cache_zap_locked

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=ffcf8f97f8a8fb92689793003acabc0a2fe97af4 commit ffcf8f97f8a8fb92689793003acabc0a2fe97af4 Author: Mateusz Guzik AuthorDate: 2021-01-23 19:41:40 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:41:

git: 7af02ef0b222 - main - zfs: use atomic_load_consume_ptr for z_cached_symlink

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=7af02ef0b222eebad4827a264454e85134692e94 commit 7af02ef0b222eebad4827a264454e85134692e94 Author: Mateusz Guzik AuthorDate: 2021-01-25 20:15:19 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:40:

git: 8d2a230e996c - main - vfs: use atomic_load_consume_ptr in vn_load_v_data_smr

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=8d2a230e996c8aec2ec4883d45f7ac38070bd38f commit 8d2a230e996c8aec2ec4883d45f7ac38070bd38f Author: Mateusz Guzik AuthorDate: 2021-01-25 20:19:08 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:40:

git: c09f79927145 - main - tmpfs: drop acq fence now that vn_load_v_data_smr has consume semantics

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=c09f7992714559eaa874f13ea4a1d648f199cd08 commit c09f7992714559eaa874f13ea4a1d648f199cd08 Author: Mateusz Guzik AuthorDate: 2021-01-25 20:17:48 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:40:

git: 054ce2b03710 - main - atomic: add stub atomic_load_consume_ptr

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=054ce2b0371042c0dbc4b3ab1d7e7795ad75d51e commit 054ce2b0371042c0dbc4b3ab1d7e7795ad75d51e Author: Mateusz Guzik AuthorDate: 2021-01-25 20:09:41 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:40:

git: 6ef8fede86f3 - main - cache: make ->nc_flag accesses atomic-clean for lockless usage

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=6ef8fede86f3feed7fb1e15b0e8a32ecfec33c6c commit 6ef8fede86f3feed7fb1e15b0e8a32ecfec33c6c Author: Mateusz Guzik AuthorDate: 2021-01-25 20:58:59 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:41:

git: cc96f92a570e - main - atomic: make atomic_store_ptr type-aware

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=cc96f92a570e05636a20fdd15d4616b127bb9ecc commit cc96f92a570e05636a20fdd15d4616b127bb9ecc Author: Mateusz Guzik AuthorDate: 2021-01-25 19:39:14 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:40:

git: f40d6217f20d - main - zfs: fix panics with invariant kernels from zfs_replay_setattr

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=f40d6217f20d69427b58d82ce4e29d88bf4dfbd6 commit f40d6217f20d69427b58d82ce4e29d88bf4dfbd6 Author: Mateusz Guzik AuthorDate: 2021-01-25 21:28:05 + Commit: Mateusz Guzik CommitDate: 2021-01-25 22:40:

git: 7baf7a453859 - stable/12 - ndis: Per user request, delay removal to 14

2021-01-25 Thread Brooks Davis
The branch stable/12 has been updated by brooks: URL: https://cgit.FreeBSD.org/src/commit/?id=7baf7a45385962d06cd2a2213109b910d40a7936 commit 7baf7a45385962d06cd2a2213109b910d40a7936 Author: Brooks Davis AuthorDate: 2021-01-25 22:16:27 + Commit: Brooks Davis CommitDate: 2021-01-25

git: 2a0be7b0331c - stable/12 - VFS_QUOTACTL: Remove needless casts of arg

2021-01-25 Thread Brooks Davis
The branch stable/12 has been updated by brooks: URL: https://cgit.FreeBSD.org/src/commit/?id=2a0be7b0331c5245418cdf2893c8ba6b42a0afa5 commit 2a0be7b0331c5245418cdf2893c8ba6b42a0afa5 Author: Brooks Davis AuthorDate: 2021-01-25 22:16:26 + Commit: Brooks Davis CommitDate: 2021-01-25

Re: git: bfc99943b04b - main - ndis(4): remove as previous announced

2021-01-25 Thread Cy Schubert
In message <202101252201.10pm1xsj001...@slippy.cwsent.com>, Cy Schubert writes: > In message <202101252146.10plk70i048...@gitrepo.freebsd.org>, Brooks Davis > writ > es: > > The branch main has been updated by brooks: > > > > URL: https://cgit.FreeBSD.org/src/commit/?id=bfc99943b04b46a6c1c885ce7b

Re: git: bfc99943b04b - main - ndis(4): remove as previous announced

2021-01-25 Thread Cy Schubert
In message <202101252146.10plk70i048...@gitrepo.freebsd.org>, Brooks Davis writ es: > The branch main has been updated by brooks: > > URL: https://cgit.FreeBSD.org/src/commit/?id=bfc99943b04b46a6c1c885ce7bcc6f23 > 5b7422aa > > commit bfc99943b04b46a6c1c885ce7bcc6f235b7422aa > Author: Brooks Da

git: 7a1591c1b625 - main - Rename kern_mmap_req to kern_mmap

2021-01-25 Thread Brooks Davis
The branch main has been updated by brooks: URL: https://cgit.FreeBSD.org/src/commit/?id=7a1591c1b625ef47a9c9954f0143a6f0d78cc05c commit 7a1591c1b625ef47a9c9954f0143a6f0d78cc05c Author: Brooks Davis AuthorDate: 2021-01-23 00:08:59 + Commit: Brooks Davis CommitDate: 2021-01-25 21:50

git: 09bdde595dd7 - stable/11 - contrib/tzdata: import tzdata 2021a

2021-01-25 Thread Philip Paeps
The branch stable/11 has been updated by philip: URL: https://cgit.FreeBSD.org/src/commit/?id=09bdde595dd761fd3499b0b0eb085088b3d3276d commit 09bdde595dd761fd3499b0b0eb085088b3d3276d Author: Philip Paeps AuthorDate: 2021-01-25 00:18:14 + Commit: Philip Paeps CommitDate: 2021-01-25

git: 085997e8f05e - stable/12 - contrib/tzdata: import tzdata 2021a

2021-01-25 Thread Philip Paeps
The branch stable/12 has been updated by philip: URL: https://cgit.FreeBSD.org/src/commit/?id=085997e8f05e69c66a8ffc0804b275a386ba1ca8 commit 085997e8f05e69c66a8ffc0804b275a386ba1ca8 Author: Philip Paeps AuthorDate: 2021-01-25 00:18:14 + Commit: Philip Paeps CommitDate: 2021-01-25

git: 7b49246c89dd - stable/13 - contrib/tzdata: import tzdata 2021a

2021-01-25 Thread Philip Paeps
The branch stable/13 has been updated by philip: URL: https://cgit.FreeBSD.org/src/commit/?id=7b49246c89dd3f6a2b780a732424905eca1860c7 commit 7b49246c89dd3f6a2b780a732424905eca1860c7 Author: Philip Paeps AuthorDate: 2021-01-25 21:52:24 + Commit: Philip Paeps CommitDate: 2021-01-25

git: bfc99943b04b - main - ndis(4): remove as previous announced

2021-01-25 Thread Brooks Davis
ff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc index 1d0766ec894a..29cf25e152e6 100644 --- a/ObsoleteFiles.inc +++ b/ObsoleteFiles.inc @@ -36,6 +36,15 @@ # xargs -n1 | sort | uniq -d; # done +# 20210125: ndis driver support removed +OLD_FILES+=usr/sbin/ndiscvt +OLD_FILES+=usr/sbin/ndisgen +OLD_

git: 1b109c69ed62 - main - Decode NFIT Platform Capabilities.

2021-01-25 Thread Alexander Motin
The branch main has been updated by mav: URL: https://cgit.FreeBSD.org/src/commit/?id=1b109c69ed625ebf292c1d16f7a3efcab96722e5 commit 1b109c69ed625ebf292c1d16f7a3efcab96722e5 Author: Alexander Motin AuthorDate: 2021-01-25 21:08:06 + Commit: Alexander Motin CommitDate: 2021-01-25 21

git: 16b3833344ad - main - altq tests: Basic ALTQ test

2021-01-25 Thread Kristof Provost
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=16b3833344ad04194f10b567bc6fae829a52a850 commit 16b3833344ad04194f10b567bc6fae829a52a850 Author: Kristof Provost AuthorDate: 2021-01-23 09:37:03 + Commit: Kristof Provost CommitDate: 2021-01-25 18:

git: dcd1e41f0cbc - main - pfctl: FreeBSD now supports DIOCGIFSPEED

2021-01-25 Thread Kristof Provost
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=dcd1e41f0cbcb8f7ec5f7a891a690be959bc1ea8 commit dcd1e41f0cbcb8f7ec5f7a891a690be959bc1ea8 Author: Kristof Provost AuthorDate: 2021-01-23 09:37:22 + Commit: Kristof Provost CommitDate: 2021-01-25 18:

git: 27b2aa49385d - main - altq: Remove unused arguments from altq_attach()

2021-01-25 Thread Kristof Provost
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=27b2aa49385dc39959f772b76abec1601d4b9ab2 commit 27b2aa49385dc39959f772b76abec1601d4b9ab2 Author: Kristof Provost AuthorDate: 2021-01-23 09:37:13 + Commit: Kristof Provost CommitDate: 2021-01-25 18:

git: e111d79806fe - main - Add FEATURE sysctls for ALTQ disciplines

2021-01-25 Thread Kristof Provost
The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=e111d79806fe3652bc85593ca77ee1b4ff85498d commit e111d79806fe3652bc85593ca77ee1b4ff85498d Author: Kristof Provost AuthorDate: 2021-01-23 09:36:33 + Commit: Kristof Provost CommitDate: 2021-01-25 18:

git: 8564660237ae - main - newvers.sh: add newline at EOF in generated vers.c

2021-01-25 Thread Ed Maste
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=8564660237aec4c679e8b607dbbf861c90fafc4c commit 8564660237aec4c679e8b607dbbf861c90fafc4c Author: Ed Maste AuthorDate: 2021-01-25 19:53:47 + Commit: Ed Maste CommitDate: 2021-01-25 19:57:18 +000

git: 868643e7229b - main - cache: assorted cleanups

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=868643e7229b7959024880cda396fef87602b948 commit 868643e7229b7959024880cda396fef87602b948 Author: Mateusz Guzik AuthorDate: 2021-01-24 20:04:01 + Commit: Mateusz Guzik CommitDate: 2021-01-25 19:45:

git: 1c7a65adb002 - main - cache: track calls to cache_symlink_alloc with unsupported size

2021-01-25 Thread Mateusz Guzik
The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=1c7a65adb002cf96bda1f72d9a26dd4237368263 commit 1c7a65adb002cf96bda1f72d9a26dd4237368263 Author: Mateusz Guzik AuthorDate: 2021-01-24 20:00:03 + Commit: Mateusz Guzik CommitDate: 2021-01-25 19:45:

git: fefb3c46a80f - main - diff: fix incorrectly displaying files as duplicates

2021-01-25 Thread Baptiste Daroussin
The branch main has been updated by bapt: URL: https://cgit.FreeBSD.org/src/commit/?id=fefb3c46a80fdde6f307e73a2b5b5aed806df1ce commit fefb3c46a80fdde6f307e73a2b5b5aed806df1ce Author: Jamie Landeg-Jones AuthorDate: 2021-01-25 17:42:26 + Commit: Baptiste Daroussin CommitDate: 2021-0

git: 13860e71eb50 - main - diff: add a test case for failed -s option

2021-01-25 Thread Baptiste Daroussin
The branch main has been updated by bapt: URL: https://cgit.FreeBSD.org/src/commit/?id=13860e71eb501f498a2263f44ea9244f6830b61c commit 13860e71eb501f498a2263f44ea9244f6830b61c Author: Baptiste Daroussin AuthorDate: 2021-01-25 17:40:12 + Commit: Baptiste Daroussin CommitDate: 2021-0

git: 881b0685d7c3 - Create tag vendor/sqlite3/sqlite-3340100

2021-01-25 Thread Cy Schubert
The annotated tag vendor/sqlite3/sqlite-3340100 has been created by cy: URL: https://cgit.FreeBSD.org/src/tag/?h=vendor/sqlite3/sqlite-3340100 tag vendor/sqlite3/sqlite-3340100 Tagger: Cy Schubert TaggerDate: 2021-01-25 17:46:58 + Tag sqlite3 3.34.1 (3340100). commit 5f965438f241e5b526

git: 5f965438f241 - vendor/sqlite3 - Import sqlite 3.34.1 (3340100).

2021-01-25 Thread Cy Schubert
The branch vendor/sqlite3 has been updated by cy: URL: https://cgit.FreeBSD.org/src/commit/?id=5f965438f241e5b52614445afc82fe56691cee5c commit 5f965438f241e5b52614445afc82fe56691cee5c Author: Cy Schubert AuthorDate: 2021-01-25 17:45:04 + Commit: Cy Schubert CommitDate: 2021-01-25 1

git: 8d55837dc133 - main - qeueue.h: Add {SLIST, STAILQ, LIST, TAILQ}_END()

2021-01-25 Thread Alex Richardson
The branch main has been updated by arichardson: URL: https://cgit.FreeBSD.org/src/commit/?id=8d55837dc1331a5cdacad539b1788ab1070159b4 commit 8d55837dc1331a5cdacad539b1788ab1070159b4 Author: Alex Richardson AuthorDate: 2021-01-25 14:11:45 + Commit: Alex Richardson CommitDate: 2021-

git: 94ac312a7168 - main - ifconfig: fix UBSan signed shift error

2021-01-25 Thread Alex Richardson
The branch main has been updated by arichardson: URL: https://cgit.FreeBSD.org/src/commit/?id=94ac312a71683a3a1a928c6adfe927d6bb45044f commit 94ac312a71683a3a1a928c6adfe927d6bb45044f Author: Alex Richardson AuthorDate: 2021-01-19 11:35:21 + Commit: Alex Richardson CommitDate: 2021-

git: a8b20f4fabbc - main - Create symlinks to host tools on non-FreeBSD hosts

2021-01-25 Thread Alex Richardson
The branch main has been updated by arichardson: URL: https://cgit.FreeBSD.org/src/commit/?id=a8b20f4fabbca9bef377009429848d4f9cea18ae commit a8b20f4fabbca9bef377009429848d4f9cea18ae Author: Alexander Richardson AuthorDate: 2021-01-25 14:18:16 + Commit: Alex Richardson CommitDate:

git: 3454fa118c41 - main - Don't include libarchive fuzz tests by default

2021-01-25 Thread Alex Richardson
The branch main has been updated by arichardson: URL: https://cgit.FreeBSD.org/src/commit/?id=3454fa118c41a588e2dad20614325297c989c60b commit 3454fa118c41a588e2dad20614325297c989c60b Author: Alex Richardson AuthorDate: 2021-01-25 14:03:17 + Commit: Alex Richardson CommitDate: 2021-

git: 5071cbacfb34 - stable/12 - safexcel: Simplify request allocation

2021-01-25 Thread Mark Johnston
The branch stable/12 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=5071cbacfb343f024bc1c9969aa43d20daa8241a commit 5071cbacfb343f024bc1c9969aa43d20daa8241a Author: Mark Johnston AuthorDate: 2021-01-18 22:07:56 + Commit: Mark Johnston CommitDate: 2021-01-25

git: 24ee73604483 - stable/12 - safexcel: Add counters for some resource exhaustion conditions

2021-01-25 Thread Mark Johnston
The branch stable/12 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=24ee73604483152baff9e5e3cf61047eb1c3 commit 24ee73604483152baff9e5e3cf61047eb1c3 Author: Mark Johnston AuthorDate: 2021-01-18 22:07:55 + Commit: Mark Johnston CommitDate: 2021-01-25

git: 804d63c0ee8f - stable/12 - safexcel: Handle command/result descriptor exhaustion gracefully

2021-01-25 Thread Mark Johnston
The branch stable/12 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=804d63c0ee8f56dfac29e1fe5879740a3549d0cb commit 804d63c0ee8f56dfac29e1fe5879740a3549d0cb Author: Mark Johnston AuthorDate: 2021-01-18 22:07:56 + Commit: Mark Johnston CommitDate: 2021-01-25

git: 5ade41213f19 - stable/12 - safexcel: Dispatch requests to the current CPU's ring

2021-01-25 Thread Mark Johnston
The branch stable/12 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=5ade41213f19c340ad022b2add816404442b1160 commit 5ade41213f19c340ad022b2add816404442b1160 Author: Mark Johnston AuthorDate: 2021-01-18 22:07:55 + Commit: Mark Johnston CommitDate: 2021-01-25

git: 8e0504d1654d - stable/13 - gdb: only return signal values for powerpc's gdb_cpu_signal()

2021-01-25 Thread Mitchell Horne
The branch stable/13 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=8e0504d1654d92995abeddef2af7241f902675ed commit 8e0504d1654d92995abeddef2af7241f902675ed Author: Mitchell Horne AuthorDate: 2021-01-22 18:56:56 + Commit: Mitchell Horne CommitDate: 2021-01

git: f773a868350d - stable/12 - gdb: only return signal values for powerpc's gdb_cpu_signal()

2021-01-25 Thread Mitchell Horne
The branch stable/12 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=f773a868350de075ecd0aaa00af370a82ebebcd1 commit f773a868350de075ecd0aaa00af370a82ebebcd1 Author: Mitchell Horne AuthorDate: 2021-01-22 18:56:56 + Commit: Mitchell Horne CommitDate: 2021-01

git: 7937837f11b6 - stable/12 - arm64: remove pcb_pc

2021-01-25 Thread Mitchell Horne
The branch stable/12 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=7937837f11b648193cb1ad44947eb941b63cc197 commit 7937837f11b648193cb1ad44947eb941b63cc197 Author: mhorne AuthorDate: 2020-12-21 16:16:09 + Commit: Mitchell Horne CommitDate: 2021-01-25 13:5

git: e94c638b484e - stable/12 - arm64: gdb(4) machine-dependent bits

2021-01-25 Thread Mitchell Horne
The branch stable/12 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=e94c638b484e48e108e1d1238938a8d1dc4757b3 commit e94c638b484e48e108e1d1238938a8d1dc4757b3 Author: mhorne AuthorDate: 2020-12-09 20:38:42 + Commit: Mitchell Horne CommitDate: 2021-01-25 13:5

git: 0fd0e98e50f3 - stable/12 - arm64: don't pass user trapframe to kdb_trap()

2021-01-25 Thread Mitchell Horne
The branch stable/12 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=0fd0e98e50f3332c9f57c4046070237647da2ef9 commit 0fd0e98e50f3332c9f57c4046070237647da2ef9 Author: mhorne AuthorDate: 2020-12-18 18:43:52 + Commit: Mitchell Horne CommitDate: 2021-01-25 13:5

git: 28388d8abf8e - stable/12 - ddb: add ability to print user registers

2021-01-25 Thread Mitchell Horne
The branch stable/12 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=28388d8abf8e2c7ac9247b138479832f96bcddc3 commit 28388d8abf8e2c7ac9247b138479832f96bcddc3 Author: mhorne AuthorDate: 2020-12-18 20:06:46 + Commit: Mitchell Horne CommitDate: 2021-01-25 13:4

git: 064009e79462 - main - Add support for enabling and disabling IFCAP_VLAN_HWTSO via ifconfig(8) in mlx5en(4).

2021-01-25 Thread Hans Petter Selasky
The branch main has been updated by hselasky: URL: https://cgit.FreeBSD.org/src/commit/?id=064009e79462dea517aa7f1a857fb4d5393caa69 commit 064009e79462dea517aa7f1a857fb4d5393caa69 Author: Hans Petter Selasky AuthorDate: 2021-01-25 10:22:55 + Commit: Hans Petter Selasky CommitDate:

git: 35ebd8d33ad2 - main - gic_v3: add message based interrupts support

2021-01-25 Thread Andrew Turner
The branch main has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=35ebd8d33ad2f7c2038f6bf9aa02eab21252f689 commit 35ebd8d33ad2f7c2038f6bf9aa02eab21252f689 Author: Cyprien Laplace AuthorDate: 2020-12-05 15:47:33 + Commit: Andrew Turner CommitDate: 2021-01-25 1

git: 46ca0b903cad - main - gic_v3: Use 64-bit writes to GICD_IROUTERn

2021-01-25 Thread Andrew Turner
The branch main has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=46ca0b903cad8955574a2c61bed41c2b92aa2273 commit 46ca0b903cad8955574a2c61bed41c2b92aa2273 Author: Cyprien Laplace AuthorDate: 2020-11-26 01:17:04 + Commit: Andrew Turner CommitDate: 2021-01-25 1