Author: cy
Date: Thu Jul 11 00:08:46 2019
New Revision: 349898
URL: https://svnweb.freebsd.org/changeset/base/349898
Log:
ipfilter commands, in this case ipf(8), passes its operations and rules
via an ioctl interface. Rules can be added or removed and stats and
counters can be zeroed out. As
((deprecated))
> to those unsafe functions like gets(), sprintf(), etc.? Or it would
> cause too much PITA?
sprintf() is not deprecated (https://en.cppreference.com/w/c/io/fprintf)
. gets() is removed in C11 (https://en.cppreference.com/w/c/io/gets),
replaced by gets_s().
We already have get
counter_u64_add(rack_out_size[TCP_MSS_ACCT_SNDACK], 1);
> else if (len == 1) {
>
This commit updates more than just the copyright. Were the other
changes intended? If yes,
a) Removing the */ at the other end of the commented block is also
needed.
b) The commit log is
Cy Schubert writes:
> In message <201907110438.x6b4cxx1054...@repo.freebsd.org>, Randall
> Stewart writ
> es:
> > Author: rrs
> > Date: Thu Jul 11 04:38:33 2019
> > New Revision: 349907
> > URL: https://svnweb.freebsd.org/changeset/base/349907
> &
Author: cy
Date: Thu Jul 11 19:36:14 2019
New Revision: 349916
URL: https://svnweb.freebsd.org/changeset/base/349916
Log:
Correct r349898. The default is add a rule.
MFC after:1 week
X-MFC with: r349898
Modified:
head/sys/contrib/ipfilter/netinet/fil.c
Modified: head/sys/contrib
Author: cy
Date: Thu Jul 11 19:36:18 2019
New Revision: 349917
URL: https://svnweb.freebsd.org/changeset/base/349917
Log:
Remove a tautological test for adding a rule in the block that
adds rules.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/fil.c
Modified: head/sy
Author: cy
Date: Fri Jul 12 01:59:08 2019
New Revision: 349929
URL: https://svnweb.freebsd.org/changeset/base/349929
Log:
Move the new ipf_pcksum6() function from ip_fil_freebsd.c to fil.c.
The reason for this is that ipftest(8), which still works on FreeBSD-11,
fails to link to it, breaking
Author: cy
Date: Sun Jul 14 02:46:26 2019
New Revision: 349978
URL: https://svnweb.freebsd.org/changeset/base/349978
Log:
style(9)
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/fil.c
Modified: head/sys/contrib/ipfilter/netinet/fil.c
===
Author: cy
Date: Sun Jul 14 02:46:30 2019
New Revision: 349979
URL: https://svnweb.freebsd.org/changeset/base/349979
Log:
Recycle the unused FR_CMPSIZ macro which became orphaned in ipfilter 5
prior to its import into FreeBSD. This macro calculates the size to be
compared within the frentry
Author: cy
Date: Sun Jul 14 02:46:34 2019
New Revision: 349980
URL: https://svnweb.freebsd.org/changeset/base/349980
Log:
Calculate the offset of the interface name using FR_NAME rather than
calclulating it "by hand". This improves consistency with the rest of
the code and is in line with pl
Author: cy
Date: Tue Jul 16 19:00:38 2019
New Revision: 350063
URL: https://svnweb.freebsd.org/changeset/base/350063
Log:
Refactor, removing one compare.
This changes the return code however the caller only tests for 0 and != 0.
One might ask then, why multiple return codes when the calle
Author: cy
Date: Tue Jul 16 19:00:42 2019
New Revision: 350064
URL: https://svnweb.freebsd.org/changeset/base/350064
Log:
As of upstream fil.c CVS r1.53 (March 1, 2009), prior to the import of
ipfilter 5.1.2 into FreeBSD-10, the fix for, 2580062 from/to targets
should be able to use any inte
Author: cy
Date: Thu Jul 18 00:27:28 2019
New Revision: 350103
URL: https://svnweb.freebsd.org/changeset/base/350103
Log:
MFV r350080:
Update sqlite3-3.28.0 (328) --> sqlite3-3.29.0 (329)
MFC after:1 week
Modified:
head/contrib/sqlite3/configure
head/contrib/sqlite3/co
> + temp = ((val >> AMDTEMP_REPTMP10H_CURTMP_SHIFT) &
> + AMDTEMP_REPTMP10H_CURTMP_MASK) * 5 / 4;
> +
> + /*
> + * On Family 15h and higher, if CurTmpTjSel is 11b, the range is
> + * adjusted down by 49.0 degrees Cels
; mv -f ${.TARGET}.tmp ${.TARGET}
>
>
Hi Ed,
This breaks 32-bit compatibility builds on amd64.
--- all_subdir_lib/libsysdecode ---
===> lib/libsysdecode (all)
make[5]: make[5]: don't know how to make /export/obj/opt/src/svn-current
/amd64.amd64/obj-lib32/tmp/sys/netinet/i
Author: cy
Date: Fri Aug 2 22:58:45 2019
New Revision: 350548
URL: https://svnweb.freebsd.org/changeset/base/350548
Log:
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
Modified: head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
===
In message <201908022258.x72mwjje001...@repo.freebsd.org>, Cy Schubert
writes:
> Author: cy
> Date: Fri Aug 2 22:58:45 2019
> New Revision: 350548
> URL: https://svnweb.freebsd.org/changeset/base/350548
>
> Log:
> MFC after: 3 days
>
This was stupid. The initi
In message <201908022307.x72n7ib0010...@slippy.cwsent.com>, Cy Schubert
writes:
> In message <201908022258.x72mwjje001...@repo.freebsd.org>, Cy Schubert
> writes:
> > Author: cy
> > Date: Fri Aug 2 22:58:45 2019
> > New Revision: 350548
> > URL: https:
Author: cy
Date: Sun Aug 4 12:47:35 2019
New Revision: 350567
URL: https://svnweb.freebsd.org/changeset/base/350567
Log:
Returning an uninitialized error is a bad thing.
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/mlfk_ipl.c
Modified: head/sys/contrib/ipfilter/neti
Author: cy
Date: Sun Aug 4 12:47:38 2019
New Revision: 350568
URL: https://svnweb.freebsd.org/changeset/base/350568
Log:
Resolve ipfilter kld unload issues related to VNET jails.
When the ipfilter kld is loaded, used within VNET jail, and unloaded,
then subsequent loading, use, and unloa
In message <20190806011317.gg1...@freebsd.org>, Gleb Smirnoff writes:
> Hi,
>
> On Fri, Jul 12, 2019 at 01:59:09AM +0000, Cy Schubert wrote:
> C> Log:
> C> Move the new ipf_pcksum6() function from ip_fil_freebsd.c to fil.c.
> C> The reason for this is that
treated similar
> development-facilitating features in the past, i.e. WITNESS/INVARIANTS,
> malloc-debug.
Agreed. As with John, I have a combination of git and svn trees on
various machines. Some install to different partitions on physical
hardware while others are tested in VMs. The ext
Author: cy
Date: Sun Aug 11 23:54:52 2019
New Revision: 350881
URL: https://svnweb.freebsd.org/changeset/base/350881
Log:
Calculate the number interface array elements using the new FR_NUM macro
instead of the hard-coded value of 4. This is a precursor to increasing
the number of interfaces
Author: cy
Date: Sun Aug 11 23:54:49 2019
New Revision: 350880
URL: https://svnweb.freebsd.org/changeset/base/350880
Log:
r272552 applied the patch from ipfilter upstream fil.c r1.129 to fix
broken ipfilter rule matches (upstream bug #554). The upstream patch
was incomplete, it resolved all
Author: cy
Date: Mon Aug 12 02:42:47 2019
New Revision: 350882
URL: https://svnweb.freebsd.org/changeset/base/350882
Log:
Initialize the frentry (the control block that defines a rule) checksum
to zero. Matching checksums save time and effort by mitigating the need
for full rule compare.
+ if (avail < 1)
> + return -EINVAL;
> +
> + avail = 1; /* this function only enable one MSI IRQ */
> + if ((error = -pci_alloc_msi(pdev->dev.bsddev, &avail)) != 0)
> + return error;
> +
> + rle = linux_pci_get_rle(pdev, SYS
On August 14, 2019 12:06:24 PM PDT, Hans Petter Selasky
wrote:
>On 2019-08-14 21:00, Cy Schubert wrote:
>> John's patch to drm-current-kmod (ports r508877) works! This broke
>> drm-current-kmod.
>
>You need to update the port. This patch should have been tested too.
On August 14, 2019 12:24:19 PM PDT, Cy Schubert
wrote:
>On August 14, 2019 12:06:24 PM PDT, Hans Petter Selasky
> wrote:
>>On 2019-08-14 21:00, Cy Schubert wrote:
>>> John's patch to drm-current-kmod (ports r508877) works! This broke
>>> drm-current-kmod.
>
On August 14, 2019 2:15:22 PM PDT, Niclas Zeising wrote:
>On 2019-08-14 21:24, Cy Schubert wrote:
>> On August 14, 2019 12:06:24 PM PDT, Hans Petter Selasky
> wrote:
>>> On 2019-08-14 21:00, Cy Schubert wrote:
>>>> John's patch to drm-current-kmod (por
Author: cy
Date: Wed Jun 24 01:51:05 2020
New Revision: 362568
URL: https://svnweb.freebsd.org/changeset/base/362568
Log:
MFV r362565:
Update 4.2.8p14 --> 4.2.8p15
Summary: Systems that use a CMAC algorithm in ntp.keys will not release
a bit of memory on each packet that uses a CMAC
Author: cy
Date: Fri Jun 26 14:18:08 2020
New Revision: 362651
URL: https://svnweb.freebsd.org/changeset/base/362651
Log:
Add MATCH option for CONFIG_MATCH_IFACE.
If the interfaces on which wpa_supplicant is to run are not known or do
not exist, wpa_supplicant can match an interface when
rgemaster BTW.
If pkgbase needs config files to be plain files we might need a knob to
make it so when pkgbase is invoking make.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https://FreeBSD.org
NTP: Web: https://nwtime.org
The need of the many outweighs the greed o
In message <20200629190958.56a010736905355abb924...@bidouilliste.com>,
Emmanuel
Vadot writes:
> On Mon, 29 Jun 2020 09:52:15 -0700
> Cy Schubert wrote:
>
> > In message <475e0172-0a4a-0201-3e2f-9e231b75f...@freebsd.org>, John Baldwin
>
> > wri
> >
Author: cy
Date: Tue Jul 7 19:09:38 2020
New Revision: 362997
URL: https://svnweb.freebsd.org/changeset/base/362997
Log:
MFV r362990:
Update sqlite to 3.32.3 (3320300).
Release Announcement: https://www.sqlite.org/releaselog/3_32_3.html
See also: ports r541414
PR:
/bsd.port.mk" line 2096: warning: String comparison
operator should be either == or !=
make: "/usr/ports/Mk/bsd.port.mk" line 2096: Malformed conditional
(defined(MAKE_JOBS_NUMBER_LIMIT) && ( ${MAKE_JOBS_NUMBER_LIMIT} <
${_MAKE_JOBS_NUMBER} ))
make: Fatal errors enco
In message <45359.1594266...@kaos.jnpr.net>, "Simon J. Gerraty" writes:
> Cy Schubert wrote:
> > This broke ports.
>
> I've reverted the change.
>
> Let me know if you still see issue.
As I said in my email, all I did was revert cond.c, and that fix
Author: cy
Date: Thu Jul 9 23:01:36 2020
New Revision: 363061
URL: https://svnweb.freebsd.org/changeset/base/363061
Log:
Enable support for IEEE 802.11N, 802.11W, 802.11AC and 802.11.AX to
hostapd and wpa_supplicant.
Submitted by: bz
MFC after:2 weeks
Relnotes: yes
Sponsore
In message , "Bjoern A.
Zeeb"
writes:
> On 9 Jul 2020, at 23:01, Cy Schubert wrote:
>
> > Author: cy
> > Date: Thu Jul 9 23:01:36 2020
> > New Revision: 363061
> > URL: https://svnweb.freebsd.org/changeset/base/363061
> >
> > Log:
> >
Author: cy
Date: Fri Jul 17 19:07:50 2020
New Revision: 363282
URL: https://svnweb.freebsd.org/changeset/base/363282
Log:
The output from usage() need not contain usage for -t when STATETOP
is not compiled in.
PR: 247952
MFC after:1 week
Modified:
head/contrib/ipfilter/
Author: cy
Date: Fri Jul 17 19:07:44 2020
New Revision: 363280
URL: https://svnweb.freebsd.org/changeset/base/363280
Log:
ipfstat -t defaults to IPv4 output. Make consistent with ipfstat -i
and ipfstat -o where without an argument IPv4 and IPv6 states are
shown. Use -4 and -6 to limit the di
Author: cy
Date: Fri Jul 17 19:07:34 2020
New Revision: 363277
URL: https://svnweb.freebsd.org/changeset/base/363277
Log:
Only use the use_inet6 variable when INET6 is a build option.
This is a prerequisite to upcoming argument processing cleanups which
will resolve consistency as was don
Author: cy
Date: Fri Jul 17 19:07:47 2020
New Revision: 363281
URL: https://svnweb.freebsd.org/changeset/base/363281
Log:
Make ipfstat -t header generic when IPv4 and IPv6 output are
displayed in the same display.
PR: 247952
MFC after:1 week
Modified:
head/contrib/ipfil
Author: cy
Date: Fri Jul 17 19:07:37 2020
New Revision: 363278
URL: https://svnweb.freebsd.org/changeset/base/363278
Log:
fr_family (the protocol family) must be AF_INET or AF_INET6, as in
the kernel, not an arbitrary 4 or 6.
This only affected printing ipfilter stats and rules from a ker
Author: cy
Date: Fri Jul 17 19:07:56 2020
New Revision: 363284
URL: https://svnweb.freebsd.org/changeset/base/363284
Log:
pfil_run_hooks() can be called recursively, so we have to
define FASTROUTE_RECURSION in fil.c
Submitted by: chris...@netbsd.org
Reported by: chris...@netbsd.org
O
Author: cy
Date: Fri Jul 17 19:07:53 2020
New Revision: 363283
URL: https://svnweb.freebsd.org/changeset/base/363283
Log:
-4 and -6 only make sense with -i, -o, and -t.
PR: 247952
MFC after:1 week
Modified:
head/contrib/ipfilter/tools/ipfstat.c
Modified: head/contrib/ipf
Author: cy
Date: Fri Jul 17 19:07:40 2020
New Revision: 363279
URL: https://svnweb.freebsd.org/changeset/base/363279
Log:
Historically ipfstat listings and stats only listed IPv4 or IPv6 output.
ipfstat would list IPv4 outputs by default while -6 would produce IPv6
outputs. This commit combi
Author: cy
Date: Fri Jul 17 19:07:59 2020
New Revision: 363285
URL: https://svnweb.freebsd.org/changeset/base/363285
Log:
Fix incorrect byte order in ipfstat -f output.
- make sure frag is initialized to 0
- initialize ipfr_p field
NetBSD PR:55137
Submitted by: chris...@netbsd.org
Author: cy
Date: Thu Jul 23 17:39:49 2020
New Revision: 363453
URL: https://svnweb.freebsd.org/changeset/base/363453
Log:
Document the IPFILTER_PREDEFINED environment variable.
PR: 248088
Reported by: jo...@a1poweruser.com
MFC after:1 week
Modified:
head/contrib/ipfilt
Author: cy
Date: Thu Jul 23 17:39:45 2020
New Revision: 363452
URL: https://svnweb.freebsd.org/changeset/base/363452
Log:
Load ipfilter, ipnat, and ippool rules, and start ipmon in a vnet jail.
PR: 248109
Reported by: jo...@a1poweruser.com
MFC after:2 weeks
Modified:
h
Author: cy
Date: Wed Jul 29 19:36:24 2020
New Revision: 363670
URL: https://svnweb.freebsd.org/changeset/base/363670
Log:
Continued ipfilter #ifdef cleanup. The r343701 log entry contains a
complete description.
MFC after:1 week
Modified:
head/contrib/ipfilter/iplang/iplang_y.y
h
Author: cy
Date: Wed Aug 5 15:33:32 2020
New Revision: 363916
URL: https://svnweb.freebsd.org/changeset/base/363916
Log:
Continued ipfilter #ifdef cleanup. The r343701 log entry contains a
complete description.
MFC after:1 week
Modified:
head/contrib/ipfilter/iplang/iplang_y.y
Mo
Author: cy
Date: Tue Aug 11 23:36:38 2020
New Revision: 364133
URL: https://svnweb.freebsd.org/changeset/base/364133
Log:
When booting a system with WITHOUT_IPFILTER the following errors
are encountered at boot time:
rcorder: requirement `ipfs' in file `/etc/rc.d/netif' has no providers.
Author: cy
Date: Mon Aug 24 18:14:04 2020
New Revision: 364721
URL: https://svnweb.freebsd.org/changeset/base/364721
Log:
MFV 364468:
Update unbound 1.10.1 --> 1.11.0.
MFH: 1 month
Added:
head/contrib/unbound/README-Travis.md
- copied unchanged from r364468, vendor/unb
Author: cy
Date: Mon Aug 24 18:13:44 2020
New Revision: 364720
URL: https://svnweb.freebsd.org/changeset/base/364720
Log:
MFV 364467:
Update sqlite to 3.33.0 (333).
Release announcement at https://www.sqlite.org/releaselog/3_33_0.html.
MFC after:1 month
Added:
head/cont
Author: cy
Date: Mon Aug 24 18:17:13 2020
New Revision: 364722
URL: https://svnweb.freebsd.org/changeset/base/364722
Log:
Update unbound version number.
MFC after:1 month
X-MFC with: r364721
Modified:
head/usr.sbin/unbound/config.h
Modified: head/usr.sbin/unbound/config.h
==
gt; allocation classes, vectorized raidz,
> vectorized checksums, various command line
> improvements, zstd compression.
>
> Thanks to those who have helped along the way:
> Ryan Moeller, Allan Jude, Zack Welch, and many
> others.
>
> Sponsored by:
Author: cy
Date: Wed Aug 26 13:13:57 2020
New Revision: 364817
URL: https://svnweb.freebsd.org/changeset/base/364817
Log:
As of r364746 (OpenZFS import) existing ZPOOLs are not imported
prior to zvol and mountcritlocal resulting in ZVOLs (swap and
virtual machine UFS filesystems) being unava
vendor, import those into
vendor, then merge the official vendor sources/updates only after we
receive them from the vendor or after the vendor has officially accepted
them. But to put our changes into the vendor branch is wrong.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https
Author: cy
Date: Wed Aug 26 20:30:00 2020
New Revision: 364835
URL: https://svnweb.freebsd.org/changeset/base/364835
Log:
To avoid breakage for those who build/install without ZFS only
rely on rc.d/zpool's BEFORE specification.
Reported by: rpokala
Modified:
head/libexec/rc/rc.d/mount
In message <7e55d429-482b-2277-b340-2b85c6874...@freebsd.org>, Andriy Gapon
wri
tes:
> On 26/08/2020 16:13, Cy Schubert wrote:
> > Author: cy
> > Date: Wed Aug 26 13:13:57 2020
> > New Revision: 364817
> > URL: https://svnweb.freebsd.org/changeset/base/364817
In message <202008271350.07rdogqn055...@slippy.cwsent.com>, Cy Schubert
writes:
> In message <7e55d429-482b-2277-b340-2b85c6874...@freebsd.org>, Andriy Gapon
> wri
> tes:
> > On 26/08/2020 16:13, Cy Schubert wrote:
> > > Author: cy
> > > Date: Wed Au
slippy$
Something like, for I in $(ls -t /etc/zfs/zpool.cache
/boot/zfs/zpool.cache) with the break?
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https://FreeBSD.org
NTP: Web: https://nwtime.org
The need of the many outweighs the greed of the few.
In message
Author: cy
Date: Thu Aug 27 14:33:46 2020
New Revision: 364867
URL: https://svnweb.freebsd.org/changeset/base/364867
Log:
/etc/zfs/zpool.cache is the preferred (and new) location of zpool.cache.
Check for it first. Only use /boot/zfs/zpool.cache if the /etc/zfs
version is not found and good.
think that using a zpool import in rc.d is a regression. I
understand why the OpenZFS folks did what they did. Linux with it's
filesystem agnostic grub and initramfs monstrosity requires that they
externalize this. I'm not happy about the regression but understand why
they di
Author: cy
Date: Mon Oct 19 20:37:38 2020
New Revision: 366857
URL: https://svnweb.freebsd.org/changeset/base/366857
Log:
Destroy cloned interfaces at netif stop, netif restart and shutdown.
This is especially important during shutdown because a child interface
of lagg with WOL enabled will
se/366997
> >
> > Log:
> > vfs: fix a race where reclaim vholds freed vnodes
> A description of the race in the commit message would be respectful to
> other readers of the code, so that we do not need to reverse-eng the
> change to understand what and why was fixed.
> > Remove the check that prevents creating "loops" from mount_nullfs(8).
> >
> >
> The simple question is: why?
I was about to ask that myself.
The why is usually more important than the how.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https://FreeBSD.o
In message <20201025213509.GA1671@brick>, Edward Tomasz Napierala writes:
> On 1025T0717, Cy Schubert wrote:
> > In message c
> > om>
> > , Oliver Pinter writes:
> > > On Sunday, October 25, 2020, Edward Tomasz Napierala
> > > wrote:
> > >
g.iosize_max_clamp
Should we also include SEE ALSO reference to sysctl(8) or sysctl(3)?
Personally I think a reference to sysctl(8) would be more apropos.
> +is non-zero).
> .It Bq Er ENOBUFS
> The mbuf pool has been completely exhausted when writing to a socket.
> .El
>
-
In message <202010260059.09q0xbxt003...@slippy.cwsent.com>, Cy Schubert
writes:
> In message <202010260037.09q0bvpn090...@repo.freebsd.org>, John-Mark Gurney
> wri
> tes:
> > Author: jmg
> > Date: Mon Oct 26 00:37:31 2020
> > New Revision: 367048
> &
Author: cy
Date: Tue Oct 27 04:35:36 2020
New Revision: 367069
URL: https://svnweb.freebsd.org/changeset/base/367069
Log:
Continued ipfilter #ifdef cleanup. The r343701 log entry contains a
complete description.
MFC after:3 days
Modified:
head/contrib/ipfilter/lib/kmem.h
Modified:
Author: cy
Date: Tue Oct 27 04:35:47 2020
New Revision: 367070
URL: https://svnweb.freebsd.org/changeset/base/367070
Log:
Remove a random equal sign from the example. It should not be there.
It's a syntax error.
PR: 210303
Reported by: leventelist at gmail.com
MFC after:
Author: cy
Date: Tue Oct 27 23:03:15 2020
New Revision: 367094
URL: https://svnweb.freebsd.org/changeset/base/367094
Log:
MFV r367082:
Update unbound 1.11.0 --> 1.12.0.
MFC after:1 month.
Modified:
head/contrib/unbound/Makefile.in
head/contrib/unbound/README.md
head/contrib/
The extraneous left brace broke the build.
> continue;
> lsent = sendmsg(sl->sl_socket, &msghdr, 0);
> if (lsent == (ssize_t)il->totalsize)
>
--
Cheers,
Cy Schubert
FreeBSD UNIX:
Author: cy
Date: Sat Nov 7 19:17:37 2020
New Revision: 367459
URL: https://svnweb.freebsd.org/changeset/base/367459
Log:
Fix build post-r367455.
MFC after:2 weeks
X-MFC with: r367455
Modified:
head/usr.sbin/syslogd/syslogd.c
Modified: head/usr.sbin/syslogd/syslogd.c
===
NP. That's happened to me a couple of times at $JOB.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https://FreeBSD.org
NTP: Web: https://nwtime.org
The need of the many outweighs the greed of the few.
In message <4b605497-6dd1-72fe-fb05-b45c61ee6...@fre
may not affect the ABI. In which
case poudriere package rebuilds are gratuitous.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https://FreeBSD.org
NTP: Web: https://nwtime.org
The need of the many outweighs the greed of the few.
___
:https://reviews.freebsd.org/D26880
Upstream commit: 3928ec53395fcc26be7844dd6b63df757166c281
Reviewed-by: Matt Macy
Reviewed-by: Toomas Soome
Reviewed-by: Brian Behlendorf
Signed off by:Cy Schubert
Closes #11088
Modified
Author: cy
Date: Tue Nov 24 06:42:32 2020
New Revision: 367980
URL: https://svnweb.freebsd.org/changeset/base/367980
Log:
Fix a typo in a comment.
MFC after:3 days
Modified:
head/sys/kern/kern_ntptime.c
Modified: head/sys/kern/kern_ntptime.c
=
t;> referenced by lex.c:225 (/opt/src/svn-current/contrib/bc/src/lex.c:225)
>>> lto.tmp:(bc_vm_boot)
>>> referenced by lex.c:227 (/opt/src/svn-current/contrib/bc/src/lex.c:227)
>>> lto.tmp:(bc_vm_boot)
cc: error: lin
In message , Stefan Esser
wri
tes:
> This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
> --maOtBJEdTLpVHYJ8ME4Ow5t7gyU1h0CIy
> Content-Type: multipart/mixed; boundary="m8M7hYutSXzrBuT8orVd2JNQQPKxzBZwZ";
> protected-headers="v1"
> From: Stefan
Just came in from outside to check my buildworld. Removing the gh-bc subdir
in obj fixed it.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: https://FreeBSD.org
NTP: Web: https://nwtime.org
The need of the many outweighs the greed of the few.
In message <94afc036-0
In message , John Baldwin
wri
tes:
> On 10/19/20 1:37 PM, Cy Schubert wrote:
> > Author: cy
> > Date: Mon Oct 19 20:37:38 2020
> > New Revision: 366857
> > URL: https://svnweb.freebsd.org/changeset/base/366857
> >
> > Log:
> > Destroy cloned interfa
Author: cy
Date: Thu Dec 3 05:49:59 2020
New Revision: 368294
URL: https://svnweb.freebsd.org/changeset/base/368294
Log:
Remove trailing whitespace.
MFC after:1 week
Modified:
head/lib/libc/gen/glob-compat11.c
Modified: head/lib/libc/gen/glob-compat11.c
Author: cy
Date: Fri Dec 4 19:31:16 2020
New Revision: 368345
URL: https://svnweb.freebsd.org/changeset/base/368345
Log:
Revert r366857.
r366857 created a number of problems, tearing down interfaces too
early in shutdown. This resulted in:
- hung ssh sessions when shutting down or r
In message
, Ed Maste writes:
> On Fri, 4 Dec 2020 at 14:31, Cy Schubert wrote:
> >
> > Author: cy
> > Date: Fri Dec 4 19:31:16 2020
> > New Revision: 368345
> > URL: https://svnweb.freebsd.org/changeset/base/368345
> >
> > Log:
> > Rev
Author: cy
Date: Wed Dec 9 02:59:24 2020
New Revision: 368478
URL: https://svnweb.freebsd.org/changeset/base/368478
Log:
MFV r368464:
Update unbound from 1.12.0 to 1.13.0
MFC after:1 week
Security: CVE-2020-28935
Added:
head/contrib/unbound/contrib/metrics.awk
- copi
Author: cy
Date: Thu Dec 17 19:50:41 2020
New Revision: 368734
URL: https://svnweb.freebsd.org/changeset/base/368734
Log:
Update the unbound version number from r368478.
Updating the version number is an extra manual step.
Pointy hat to:cy
Reported by: Herbert J. Skuhra
M
Author: cy
Date: Wed Dec 4 15:04:06 2019
New Revision: 355388
URL: https://svnweb.freebsd.org/changeset/base/355388
Log:
Chase r352304. The default rlimit memlock is no memory locking.
Reported by: egypcio@
MFC after:3 days
Modified:
head/usr.sbin/ntp/doc/ntp.conf.5
Modified: he
Author: cy
Date: Thu Dec 12 20:44:49 2019
New Revision: 355670
URL: https://svnweb.freebsd.org/changeset/base/355670
Log:
Rather than pass the address of the packet information control block to
ipf_pcksum6(), directly pass the adddress of the mbuf to it. This reduces
one pointer dereference.
Author: cy
Date: Thu Dec 12 20:44:46 2019
New Revision: 355669
URL: https://svnweb.freebsd.org/changeset/base/355669
Log:
in6_cksum() returns zero when checksums are good.
PR: 203275
Reported by: Frank Volf
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/
i
> on */
> +#ifndef __ILP32__
> +#define ARG_MAX (2 * 256 * 1024) /* max bytes for an exec functi
> on */
> +#else
> +#define ARG_MAX (256 * 1024) /* max bytes for KVA-starved ar
> chs */
> +#endif
> #ifndef CHILD_MAX
> #define CHILD_MAX
In message
, Warner Losh writes:
> --9630860599df06a0
> Content-Type: text/plain; charset="UTF-8"
>
> On Mon, Dec 16, 2019, 9:42 PM Cy Schubert wrote:
>
> > In message <201912162355.xbgntuq6078...@repo.freebsd.org>, "Pedro F.
> > Gi
>allocated.
>It seems that this commit has changed the error code returned from
>ip[6]_output() when a packet is blocked. Previously it was EACCES, but
>now it became EPERM. Was it intentional?
EPERM, operation not permitted regardless of privilege, is
Author: cy
Date: Sat Dec 21 21:01:03 2019
New Revision: 355988
URL: https://svnweb.freebsd.org/changeset/base/355988
Log:
MFV r353141 (by phillip):
Update libpcap from 1.9.0 to 1.9.1.
MFC after:2 weeks
Added:
head/contrib/libpcap/CONTRIBUTING.md
- copied unchanged from r353
Author: cy
Date: Sat Dec 21 21:02:50 2019
New Revision: 355989
URL: https://svnweb.freebsd.org/changeset/base/355989
Log:
MFV r353143 (phillip):
Update tcpdump from 4.9.2 to 4.9.3.
MFC after:2 weeks
Added:
head/contrib/tcpdump/configure.ac
- copied unchanged from r353144, v
Author: cy
Date: Sat Dec 21 21:05:53 2019
New Revision: 355990
URL: https://svnweb.freebsd.org/changeset/base/355990
Log:
MFV r355890:
Fix libpcap issue #893: check for invalid IPv4 addresses.
This fixes errors such as:
tcpdump -i lagg0 net 999.999.999.999
This was originally
Author: cy
Date: Tue Dec 31 15:50:41 2019
New Revision: 356228
URL: https://svnweb.freebsd.org/changeset/base/356228
Log:
MFV r356143:
Update unbound 1.9.2 --> 1.9.6.
MFC after:3 days
Security: CVE-2019-18934 (fixed by 1.9.5)
Added:
head/contrib/unbound/compat/getentropy_f
nitialize the variable
> 'files' to silence this warning struct kinfo_file *kif, *files;
> ^
>= NULL
> /usr/src/lib/libprocstat/libprocstat.c:1281:48: error: no member named 'v_tag
>
Author: cy
Date: Mon Jan 13 06:55:35 2020
New Revision: 356677
URL: https://svnweb.freebsd.org/changeset/base/356677
Log:
As of r356642 desiredvnodes is u_long.
Modified:
head/usr.bin/systat/vmstat.c
Modified: head/usr.bin/systat/vmstat.c
=
301 - 400 of 997 matches
Mail list logo