Re: git: 2a50a9de8340 - main - terminfo: add terminfo database

2021-02-26 Thread Rob Wing
Rod, https://lists.freebsd.org/pipermail/freebsd-current/2020-May/076047.html not sure if that's the one Bapt was referencing...because you commented in that same thread as well, linked below. https://lists.freebsd.org/pipermail/freebsd-current/2020-May/076051.html -Rob On Fri, Feb 26, 2021 at

Re: git: f5f50ec15688 - stable/13 - MFC ab6d9aaed76e: Move business logic from rebuild_fd_callout() into rebuild_fd().

2021-02-04 Thread Rob Wing
I’m not opinionated on this, only pointing out that most MFC commits lately have trended towards using git cherry-pick and dropping the MFC: xx in the commit message. I know Warner encourages this, as documented at https://github.com/bsdimp/freebsd-git-docs/blob/main/MFC.md#marking-mfcs -Rob

Re: git: d4870e3a7256 - main - bhyve/snapshot: provide a way to send other messages/data to bhyve

2021-05-12 Thread Rob Wing
shoot, I messed up - the differential revision is https://reviews.freebsd.org/D29213 On Wed, May 12, 2021 at 5:33 PM Robert Wing wrote: > The branch main has been updated by rew: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=d4870e3a7256704905655e997b37a866024c2894 > > commit d4870e3a725670

Re: git: f190f9193bc1 - main - Fix fsck_ufs segfaults with gjournal (SU+J)

2021-05-28 Thread Rob Wing
Hmm, I provided a fix for ( https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=245907) and it appears to have created a spiderweb of breakage - as noted by jhb and chs (in commit 84768d114951e88288024f09d4beae0956c3cf21). I’ll have some time to dig into this in the next day or two. In the meantime

Re: git: f190f9193bc1 - main - Fix fsck_ufs segfaults with gjournal (SU+J)

2021-05-28 Thread Rob Wing
the least intrusive fix I can come up with at the moment, while still fixing the original bug and (hopefully) not introducing others. -Rob On Fri, May 28, 2021 at 1:21 AM Rob Wing wrote: > Hmm, I provided a fix for ( > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=245907) and it appear

Re: git: 99c3f1577459 - releng/13.1 - zfs: merge openzfs/zfs@52bad4f23 (zfs-2.1-release) into stable/13

2022-03-29 Thread Rob Wing
Martin, Is there any reason not to cherry-pick this commit in: https://github.com/openzfs/zfs/commit/4a1195ca5041cbff2a6b025a31937fef84876c52 ? I bring it up because a few users have expressed interest in it. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=260160 On Tue, Mar 29, 2022 at 5:53

Re: git: 25392fac9488 - main - libalias: Fix splay comparsion bug

2021-08-06 Thread Rob Wing
Hey Gleb, as a heads up (in case you missed it)...about a week ago Lutz mentioned he’d be AFK for three weeks. On Friday, August 6, 2021, Gleb Smirnoff wrote: > Lutz, > > Wouldn't declaring 'i' to u_short fix the root of the problem? > > On Fri, Jul 02, 2021 at 10:32:30PM +, Lutz Donnerha

Re: git: a01bf3940271 - stable/13 - geom: add kqfilter support for geom dev

2022-02-23 Thread Rob Wing
I forgot to pass the -x flag to git cherry pick on this one. This commit was cherry picked from a50e92cc203c1e3dd2cca03410b568f76694895c On Wed, Feb 23, 2022 at 8:42 AM Robert Wing wrote: > The branch stable/13 has been updated by rew: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=a01bf394

Re: git: eb18708ec8c7 - main - syncache: accept packet with no SA when TCP_MD5SIG is set

2022-01-12 Thread Rob Wing
On Wed, Jan 12, 2022 at 6:58 AM Mike Karels wrote: > Sorry for the delayed response; I’ve been out. > No worries. This change seems wrong to me. The TCP_MD5SIG option clearly required MD5 > signatures on all connections in the past, for many years, You're right, since 2017. Before that, TCP_

Re: git: eb18708ec8c7 - main - syncache: accept packet with no SA when TCP_MD5SIG is set

2022-01-14 Thread Rob Wing
On Wed, Jan 12, 2022 at 1:27 PM Mike Karels wrote: > Rob wrote: > > For what it's worth, this behavior is consistent with OpenBSD. > > That's a useful data point, thanks. > There is value in having the same semantics as OpenBSD for the TCP_MD5SIG option . If OpenB

Re: git: 56f3f2d2491e - main - libsecureboot: avoid set but not used errors

2023-06-30 Thread Rob Wing
Looking at this snippet: + if (!cn.status) { buf = NULL; + if (err == 0) /* keep compiler happy */ + buf = NULL; + } return (buf); } And considering the comment at contrib/bearssl/inc/bearssl_x509.h