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

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

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: 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:

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: 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: 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: 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: 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:

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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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

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