> Hello;
>
> On 2/26/2017 8:51 PM, Cy Schubert wrote:
> > In message <201702270010.v1r0a1wm074...@repo.freebsd.org>, "Pedro F.
> > Giffuni" w
> > rites:
> >> Author: pfg
> >> Date: Mon Feb 27 00:10:00 2017
> >> New Revision: 3143
In message
, Warner Losh writes:
> > Then why even test for RC being NULL?
>
> So rc->rss_bucket_map doesn't dereference a null pointer and core dump maybe?
Yes. I overlooked that. :(
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
error generated.
*** [subr_prf.pico] Error code 1
make[4]: stopped in /opt/src/svn-current/lib/libsbuf
1 error
... and the fix...
Index: sys/kern/subr_prf.c
===
--- sys/kern/subr_prf.c (revision 314404)
+++ sys/kern/subr_prf.c
Cy Schubert writes:
> In message <201702281901.v1sj1xke089...@repo.freebsd.org>, Scott Long
> writes:
> > Author: scottl
> > Date: Tue Feb 28 19:01:59 2017
> > New Revision: 314399
> > URL: https://svnweb.freebsd.org/changeset/base/314399
> >
&g
Author: cy
Date: Fri Mar 3 21:32:27 2017
New Revision: 314627
URL: https://svnweb.freebsd.org/changeset/base/314627
Log:
Fix leak (free str before returning when ctx's calloc fails).
Submitted by: trix_juniper.net (Tom Rix)
Discovered by:clang's static analyzer
MFC after:4
:ngie
> In collaboration with: bdrewery
> MFC after: 1 month
> Reported by:Jenkins, cy, ler,O. Hartmann , Michael Butler
Actually, I didn't report anything. I simply replied to O. Hartmann's
email that it was failing to link to rpcsvc.
Good t
rg);
break;
case 6:
- ret = ipfw_lookup_table_extended(chain, cfg->map64,
+ ret = ipfw_lookup_table(chain, cfg->map64,
sizeof(struct in6_addr), &args->f_id.src_ip6, &tablearg);
Cy Schubert writes:
> In message <201703052348.v25nmoi1032...@repo.freebsd.org>, "Andrey V.
> Elsukov"
> writes:
> > Author: ae
> > Date: Sun Mar 5 23:48:24 2017
> > New Revision: 314716
> > URL: https://svnweb.freebsd.org/changeset/ba
dst_ip);
> + ret = ipfw_lookup_table(chain, cfg->map46, sizeof(in_addr_t),
> + &dst4, &tablearg);
> break;
> case 6:
> - ret = ipfw_lookup_table_extended(chain, cfg->map64,
> + ret = ipfw_lookup_table(chain, cfg->ma
Author: cy
Date: Mon Mar 6 07:11:23 2017
New Revision: 314768
URL: https://svnweb.freebsd.org/changeset/base/314768
Log:
Fix mismerge of r280849.
Reported by: des
MFC after:3 days
Modified:
head/usr.sbin/ntp/doc/ntp.keys.5
Modified: head/usr.sbin/ntp/doc/ntp.keys.5
=
tests.dist(revision 314891)
+++ etc/mtree/BSD.tests.dist(working copy)
@@ -22,6 +22,8 @@
..
pkill
..
+pwait
+..
sh
builtins
..
@@ -640,8 +642,6 @@
..
printf
..
-pwait
-
Author: cy
Date: Wed Mar 8 05:27:04 2017
New Revision: 314892
URL: https://svnweb.freebsd.org/changeset/base/314892
Log:
Fix install due to incorrect placement of pwait dir in r314886.
Reported by: Shawn Webb
MFC after:2 weeks
X-MFC with: r314886
Modified:
head/etc/mtree/BSD
In message <98e7a78a-3bde-427f-ad35-ab56dd684...@gmail.com>, "Ngie Cooper
(yane
urabeya)" writes:
> > On Mar 7, 2017, at 21:27, Cy Schubert wrote:
> >
> > Author: cy
> > Date: Wed Mar 8 05:27:04 2017
> > New Revision: 314892
> > U
Author: cy
Date: Wed Mar 8 07:02:39 2017
New Revision: 314896
URL: https://svnweb.freebsd.org/changeset/base/314896
Log:
Remove extraneous arguments and options, which don't make sense for
a file documented in volume 5.
MFC after:3 days
Modified:
head/usr.sbin/ntp/doc/ntp.conf.5
Author: cy
Date: Thu Mar 9 05:29:24 2017
New Revision: 314946
URL: https://svnweb.freebsd.org/changeset/base/314946
Log:
Configure leap-second smearing (always).
Leap-second smearing is an experimental option that may be specified in
ntp.conf(5) and the -x option on the command line to s
Author: cy
Date: Wed Jul 26 02:05:09 2017
New Revision: 321504
URL: https://svnweb.freebsd.org/changeset/base/321504
Log:
Remove trailing slash (/) for consistency.
Modified:
head/kerberos5/lib/libkafs5/Makefile
Modified: head/kerberos5/lib/libkafs5/Makefile
=
Author: cy
Date: Thu Jul 27 06:26:15 2017
New Revision: 321605
URL: https://svnweb.freebsd.org/changeset/base/321605
Log:
As in r315225, discard 3072 bytes of RC4 bytestream instead of 1024.
PR: 217920
Submitted by: codar...@hackers.mu
Reviewed by: emaste, cem
Approved by:
In message <59e80a44-d9de-5081-9eda-f068188b8...@delphij.net>, Xin Li
writes:
> On 7/26/17 23:26, Cy Schubert wrote:
> > Author: cy
> > Date: Thu Jul 27 06:26:15 2017
> > New Revision: 321605
> > URL: https://svnweb.freebsd.org/changeset/base/321605
> >=2
Cy Schubert writes:
> In message <59e80a44-d9de-5081-9eda-f068188b8...@delphij.net>, Xin Li
> writes:
> > On 7/26/17 23:26, Cy Schubert wrote:
> > > Author: cy
> > > Date: Thu Jul 27 06:26:15 2017
> > > New Revision: 321605
> > > URL: htt
In message <201707310527.v6v5rdrj004...@slippy.cwsent.com>, Cy Schubert
writes:
> Cy Schubert writes:
> > In message <59e80a44-d9de-5081-9eda-f068188b8...@delphij.net>, Xin Li
> > writes:
> > > On 7/26/17 23:26, Cy Schubert wrote:
> > > > A
Author: cy
Date: Mon Jul 31 19:07:45 2017
New Revision: 321806
URL: https://svnweb.freebsd.org/changeset/base/321806
Log:
Remove redundant include directories which expand to a noop,
"-I/lib/krb5 -I -I".
Reviewed by: ngie@, markm@
MFC after:1 month
Differential Revision:D
Author: cy
Date: Sat Aug 5 00:28:42 2017
New Revision: 322073
URL: https://svnweb.freebsd.org/changeset/base/322073
Log:
Fix matchcing of NATed ICMP queries (resolving NATed MTU discovery).
MFC after:1 month
Modified:
head/sys/contrib/ipfilter/netinet/ip_nat.c
Modified: head/sys/co
In message <201708050028.v750sgsj015...@repo.freebsd.org>, Cy Schubert
writes:
> Author: cy
> Date: Sat Aug 5 00:28:42 2017
> New Revision: 322073
> URL: https://svnweb.freebsd.org/changeset/base/322073
>
> Log:
> Fix matchcing of NATed ICMP queries (re
Author: cy
Date: Sat Aug 5 06:46:06 2017
New Revision: 322075
URL: https://svnweb.freebsd.org/changeset/base/322075
Log:
loadpoolfile() implements a -R (NORESOLVE) option which is not listed
in usage(). This commit trues up usage() with loadpoolfile().
Modified:
head/contrib/ipfilter/tools
Author: cy
Date: Sun Aug 6 06:31:47 2017
New Revision: 322112
URL: https://svnweb.freebsd.org/changeset/base/322112
Log:
krb5_err.h is generated from a .et file in kerberos5/lib/libkrb5.
As kerberos5/lib/krb5 include files are already referenced it makes
no sense to generate it again here.
Author: cy
Date: Sun Aug 6 06:35:40 2017
New Revision: 322113
URL: https://svnweb.freebsd.org/changeset/base/322113
Log:
Remove dead target introduced in r178828.
MFC after:1 week
Modified:
head/kerberos5/libexec/ipropd-master/Makefile
Modified: head/kerberos5/libexec/ipropd-master
nks.
I'll submit a PR or phab diff for the port... Currently build/run testing
here.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the many outweighs the greed of the few.
___
svn-src-
Author: cy
Date: Mon Aug 21 12:42:05 2017
New Revision: 322749
URL: https://svnweb.freebsd.org/changeset/base/322749
Log:
Replace the include path using CURDIR with KRB5DIR. This is consistent
with the rest of the Makefiles in kerberos5/.
MFC after:1 week
Modified:
head/kerberos5/l
==
--- manctl.8(revision 323342)
+++ manctl.8(working copy)
@@ -23,7 +23,7 @@
.\" SUCH DAMAGE.
.\"
.\" $FreeBSD$
-.Dd January 1, 1996
+.Dd September 8, 2017
.Dt MANCTL 8
.Os
.Sh NAME
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web:
g_hisi.c optional dwcotg fdt soc_hisi_hi6220
> dev/usb/controller/ehci_mv.c optionalehci_mv fdt
>
Hi Sean,
Don't forget sys/modules/uart/Makefile.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the many outweighs the greed of
In message , Sean Bruno
write
s:
> This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
> --TihrB0CKT3jqUaMs7S3eH1inAg6bsh5sX
> Content-Type: multipart/mixed; boundary="6nk2xUFgscbwBqdTs6JuLWhnhbTJx5KiL";
> protected-headers="v1"
> From: Sean Bruno
&
; \
> - uart_dev_z8530.c uart_dev_mvebu.c \
> + uart_dev_z8530.c ${uart_dev_mvebu} \
> uart_if.c uart_if.h uart_subr.c uart_tty.c
>
> SRCS+= acpi_if.h bus_if.h card_if.h device_if.h isa_if.h ${ofw_bus_if}
> \
>
Thank you.
--
Cheers,
Cy Schubert
FreeBSD
Cy Schubert writes:
> In message , Sean Bruno
> write
> s:
> > This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
> > --TihrB0CKT3jqUaMs7S3eH1inAg6bsh5sX
> > Content-Type: multipart/mixed; boundary="6nk2xUFgscbwBqdTs6JuLWhnhbTJx5KiL"
> ;
> >
Author: cy
Date: Tue Sep 12 04:21:04 2017
New Revision: 323478
URL: https://svnweb.freebsd.org/changeset/base/323478
Log:
Improve the wording of a comment describing why EAGAIN is the error code.
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/ip_state.c
Modified: head/
t;
> >
> > #blamebruno
> >
> > Reviewed by:sbruno
> > Approved by:sbruno (mentor)
> > Sponsored by:Limelight Networks
> > Differential Revision:https://reviews.freebsd.org/D12235
>
>
In message
, Warner Losh writes:
> --001a1141f15ac444250559123c56
> Content-Type: text/plain; charset="UTF-8"
>
> On Wed, Sep 13, 2017 at 1:11 AM, Cy Schubert
> wrote:
>
> > In message <4d5ae475-5a38-4429-8b71-dbecdfb0a...@gmail.com>, Ngie Cooper
> &
rotected-headers="v1"
> From: Sean Bruno
> To: Cy Schubert ,
> Ngie Cooper
> Cc: Stephen Hurd , src-committ...@freebsd.org,
> svn-src-...@freebsd.org, svn-src-head@freebsd.org
> Message-ID: <48654d1f-4cc7-da05-7a73-ef538b431...@freebsd.org>
> Subject: Re: svn
Thank you.
Sent using a tiny phone keyboard. Apologies for any typos.
Cy Schubert
or
-Original Message-
From: Gordon Tetlow
Sent: 18/09/2017 09:42
To: src-committ...@freebsd.org; svn-src-...@freebsd.org;
svn-src-head@freebsd.org
Subject: svn commit: r323709 - head/usr.sbin/tcpdump
Author: cy
Date: Mon Sep 18 19:16:41 2017
New Revision: 323715
URL: https://svnweb.freebsd.org/changeset/base/323715
Log:
Don't use an apostrophe in a possesive pronoun.
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/ip_state.c
Modified: head/sys/contrib/ipfilter/netin
Author: cy
Date: Sat Sep 23 06:00:17 2017
New Revision: 323945
URL: https://svnweb.freebsd.org/changeset/base/323945
Log:
Correct two misspellings. Also align */.
Modified:
head/sys/contrib/ipfilter/netinet/ip_nat.c
Modified: head/sys/contrib/ipfilter/netinet/ip_nat.c
===
In message <20170923105628.73924...@ernst.home>, Gary Jennejohn writes:
> On Sat, 23 Sep 2017 06:00:17 + (UTC)
> Cy Schubert wrote:
>
> > Author: cy
> > Date: Sat Sep 23 06:00:17 2017
> > New Revision: 323945
> > URL: https://svnweb.freebsd
Author: cy
Date: Sun Sep 24 03:33:26 2017
New Revision: 323962
URL: https://svnweb.freebsd.org/changeset/base/323962
Log:
Fix typo from r323945.
Reported by: Gary Jennejohn
Point hat to: cy (me)
Modified:
head/sys/contrib/ipfilter/netinet/ip_nat.c
Modified: head/sys/contrib/ipfilter
error: implicit declaration of function
'critical_exi
t' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
critical_exit();
> #include
> #include
> #include
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need
evice
> > > mem:
> > > null:
> > > nexus0
> > > random: harvesting attach, 8 bytes (4 bits) from ram0
> > > acpi0: on motherboard
> > > ACPI: 4 ACPI AML tables successfully acquired and loaded
> > > panic: acpi: timer op not yet
===
> =
> --- head/sys/sys/proc.h Tue Nov 13 22:41:20 2018(r340412)
> +++ head/sys/sys/proc.h Tue Nov 13 22:58:38 2018(r340413)
> @@ -193,6 +193,7 @@ struct trapframe;
> struct turnstile;
> struct vm_map;
> st
Sorry. This should have been a private email. But now that it's in the
wild, if_sk.c calls epoch_enter_preempt() at line 84 which causes panic
early in boot.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the many outweighs the greed of th
In message <178c3d69-4a3b-49cb-dab4-f6f4139df...@selasky.org>, Hans
Petter Sela
sky writes:
> On 11/14/18 10:33 AM, Cy Schubert wrote:
> > + epoch_thread_init(td);
>
> Did you forget to call epoch_thread_init() for thread0 ?
>
> --HPS
It appears that interfaces t
EGACY (or pick a name) would
preserve traditional behavior. RB_POWEROFF, RB_POWERCYCLE and RB_HALT
would also signal init except when RB_FASTBOOT flag is set.
This aligns us better with what Linux is currently doing. IIRC Solaris
still uses the legacy behavior however Solaris isn't relev
In message ,
=?utf-8?Q?Edward
_Tomasz_Napiera=C5=82a?= writes:
>
>
> > On 16 Nov 2018, at 18:40, Cy Schubert wrote:
> >
> > In message <201811161804.wagi44wc047...@pdx.rh.cn85.dnsmgr.net>,
> > "Rodney W. Gri
> > mes" writes:
> >
Author: cy
Date: Thu Nov 22 04:48:27 2018
New Revision: 340754
URL: https://svnweb.freebsd.org/changeset/base/340754
Log:
Allow forced start of ipmon in special cases where testing is desired
(or other special cases) and when ipfilter is disabled in rc.conf but
started by other means.
M
Author: cy
Date: Sat Nov 24 06:49:41 2018
New Revision: 340867
URL: https://svnweb.freebsd.org/changeset/base/340867
Log:
FreeBSD 7 has been history for many moons. Remove some dead code.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
Modified: head/sy
Author: cy
Date: Sat Nov 24 07:16:44 2018
New Revision: 340868
URL: https://svnweb.freebsd.org/changeset/base/340868
Log:
An OSF/1 ifdef makes absolutley no sense in a FreeBSD specific source
file.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
Modified
Author: cy
Date: Sat Nov 24 18:23:05 2018
New Revision: 340909
URL: https://svnweb.freebsd.org/changeset/base/340909
Log:
Combine two lines into one following unifdef for r255332.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
Modified: head/sys/contri
Author: cy
Date: Thu Nov 29 21:20:53 2018
New Revision: 341265
URL: https://svnweb.freebsd.org/changeset/base/341265
Log:
Remove an old comment/code and replace with a comment that
directly references a NetBSD commit.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/ip_
Agreed.
---
Sent using a tiny phone keyboard.
Apologies for any typos and autocorrect.
Also, this old phone only supports top post. Apologies.
Cy Schubert
or
The need of the many outweighs the greed of the few.
---
-Original Message-
From: Alexey Dokuchaev
Sent: 29/11/2018 17:01
To
Author: cy
Date: Fri Nov 30 04:15:42 2018
New Revision: 341279
URL: https://svnweb.freebsd.org/changeset/base/341279
Log:
Clean up a redundant non-redefinition of IFNAMSIZ. IFNAMSIZ
is defined in net/if.h, therefore the condition is never met and
confusing to those who follow.
MFC after
Author: cy
Date: Fri Nov 30 04:15:56 2018
New Revision: 341280
URL: https://svnweb.freebsd.org/changeset/base/341280
Log:
Clean up a rather useless conditional structure member definition.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil.h
Modified: head/sys/contr
Author: cy
Date: Sat Dec 1 17:59:41 2018
New Revision: 341377
URL: https://svnweb.freebsd.org/changeset/base/341377
Log:
Restore handling of PMTU discovery, removed through an unifdef(1)
following the MFV of r254219 into r255332. In addition the 'FreeBSD'
macro was never defined in ipfilter
Author: cy
Date: Sat Dec 1 20:30:18 2018
New Revision: 341384
URL: https://svnweb.freebsd.org/changeset/base/341384
Log:
Remove IFF_DRVRLOCK as it is used in IRIX only (and we all know IRIX
is dead). This includes collaterally removing code shared by HP/UX,
SGI, and Linux, where IP Filter w
In message <20181201214705.7d2dca977d720467db57e...@bidouilliste.com>,
Emmanuel
Vadot writes:
>
>
> Hi Cy,
>
> On Sat, 1 Dec 2018 17:59:42 +0000 (UTC)
> Cy Schubert wrote:
>
> > Author: cy
> > Date: Sat Dec 1 17:59:41 2018
> > New Revisio
Author: cy
Date: Tue Dec 4 06:11:04 2018
New Revision: 341456
URL: https://svnweb.freebsd.org/changeset/base/341456
Log:
As part of the general cleanup of the ipfilter code, special cases
are committed separately to document fixing them separately from
the general cleanup. In this case we d
Author: cy
Date: Thu Dec 6 20:15:54 2018
New Revision: 341650
URL: https://svnweb.freebsd.org/changeset/base/341650
Log:
Remove an ugly Ultrix hack. Ultrix has been AWOL since the last ice
age, more to come.
MFC after:1 week
Modified:
head/contrib/ipfilter/ipsend/ip.c
head/contr
Author: cy
Date: Sun Dec 9 06:45:49 2018
New Revision: 341759
URL: https://svnweb.freebsd.org/changeset/base/341759
Log:
MFV r341618:
Update wpa 2.6 --> 2.7.
Added:
head/contrib/wpa/src/ap/dpp_hostapd.c
- copied unchanged from r341619, vendor/wpa/dist/src/ap/dpp_hostapd.c
head/co
In message <201812090645.wb96jnso066...@repo.freebsd.org>, Cy Schubert
writes:
> Author: cy
> Date: Sun Dec 9 06:45:49 2018
> New Revision: 341759
> URL: https://svnweb.freebsd.org/changeset/base/341759
>
> Log:
> MFV r341618:
>
> Update wpa 2.6 -->
In message <201812090645.wb96jnso066...@repo.freebsd.org>, Cy Schubert
writes:
> Author: cy
> Date: Sun Dec 9 06:45:49 2018
> New Revision: 341759
> URL: https://svnweb.freebsd.org/changeset/base/341759
>
> Log:
> MFV r341618:
>
> Update wpa 2.6 -->
> >> On Sun, Dec 9, 2018 at 1:09 PM Rodney W. Grimes <
> >> free...@pdx.rh.cn85.dnsmgr.net> wrote:
> >>
> >> > > In message <201812090645.wb96jnso066...@repo.freebsd.org>, Cy
> >> Schubert
> >> > > writes:
> >> > >
te:
> > >
> > >> On Sun, Dec 9, 2018 at 1:09 PM Rodney W. Grimes <
> > >> free...@pdx.rh.cn85.dnsmgr.net> wrote:
> > >>
> > >> > > In message <201812090645.wb96jnso066...@repo.freebsd.org>, Cy
> > >> Sc
Author: cy
Date: Wed Dec 12 05:18:53 2018
New Revision: 341839
URL: https://svnweb.freebsd.org/changeset/base/341839
Log:
Set default ciphers.
Submitted by: jkim@
Modified:
head/usr.sbin/wpa/Makefile.inc
Modified: head/usr.sbin/wpa/Makefile.inc
==
In message , Jung-uk
Kim writ
es:
> This is an OpenPGP/MIME signed message (RFC 4880 and 3156)
> --1WzVlQChcwPiBmKooCiYuMNrbS28KVujs
> Content-Type: multipart/mixed; boundary="mK5ijTqRdq36SSbJEKLOKtLDhMyjY2IRB";
> protected-headers="v1"
> From: Jung-uk K
Author: cy
Date: Sat Dec 15 22:02:02 2018
New Revision: 342140
URL: https://svnweb.freebsd.org/changeset/base/342140
Log:
Repair build post-r342139
Modified:
head/tools/build/mk/OptionalObsoleteFiles.inc
Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
y initial thought was we could port the NetBSD version but theirs is
arguably just as ancient as ours.
On a juxtaposed topic, how would one export an eclectic set of
directories from svn to git? My last experience doing that was painful
because there was more than one subdirectory involved and mo
In message
, Warner Losh writes:
> --fca822057d19b03f
> Content-Type: text/plain; charset="UTF-8"
>
> On Sat, Dec 15, 2018, 5:54 PM Cy Schubert
> > In message <7a528b98-f554-4d34-a5cb-aa5496a89...@grosbein.net>, Eugene
> > Grosbein
>
Author: cy
Date: Sun Dec 16 04:06:53 2018
New Revision: 342150
URL: https://svnweb.freebsd.org/changeset/base/342150
Log:
Add a missing leading / in a filename.
MFC after:3 days
Modified:
head/share/man/man4/ses.4
Modified: head/share/man/man4/ses.4
=
Author: cy
Date: Tue Dec 18 01:12:30 2018
New Revision: 342183
URL: https://svnweb.freebsd.org/changeset/base/342183
Log:
MFV r342175:
Update sqlite3-3.23.1 --> sqlite3-3.26.0 (326)
MFC after:3 days
Security: https://blade.tencent.com/magellan/index_en.html
Author: cy
Date: Sat Dec 22 21:49:25 2018
New Revision: 342374
URL: https://svnweb.freebsd.org/changeset/base/342374
Log:
Remove the last vestiges of HP/UX from a FreeBSD-only ipfilter
source file.
MFC after:1 week
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
Modif
Author: cy
Date: Sun Dec 23 05:10:36 2018
New Revision: 342377
URL: https://svnweb.freebsd.org/changeset/base/342377
Log:
Remove NETBSD_PF. NETBSD_PF is a flag that defines whether the pfil(9)
framework is available. pfil(9) has been in FreeBSD since FreeBSD 5
and according to svn log was fi
Author: cy
Date: Mon Dec 24 01:12:22 2018
New Revision: 342384
URL: https://svnweb.freebsd.org/changeset/base/342384
Log:
Register a pre-commit review for ipfilter.
Modified:
head/MAINTAINERS
Modified: head/MAINTAINERS
=
Author: cy
Date: Mon Dec 24 01:12:43 2018
New Revision: 342385
URL: https://svnweb.freebsd.org/changeset/base/342385
Log:
Remove an empty #if block.
The interesting thing is that looking through Darren's commit logs,
the line containing an extern ppsratecheck() definition was removed
fr
Author: cy
Date: Thu Dec 27 04:53:53 2018
New Revision: 342547
URL: https://svnweb.freebsd.org/changeset/base/342547
Log:
Remove another empty #ifdef block. This empty block also exists in
the upstream HEAD.
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/fil.c
Modifi
Author: cy
Date: Sat Dec 29 18:11:17 2018
New Revision: 342596
URL: https://svnweb.freebsd.org/changeset/base/342596
Log:
Remove duplicate include of sys/mbuf.h.
Reported by: Trond Endrest
MFC after:3 days
Modified:
head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
Modified: he
Author: cy
Date: Sun Dec 30 04:25:48 2018
New Revision: 342605
URL: https://svnweb.freebsd.org/changeset/base/342605
Log:
TCP_PAWS_IDLE is does not exist in NetBSD and illumos. In FreeBSD
TCP_PAWS_IDLE is defined in netinet/tcp_seq.h, however this header
isn't included explicitly or implicit
t;
> # search path for cd(1)
> # CDPATH=:$HOME
>
Hmmm. At $JOB the RHEL servers use this prompt. IMO the prompt is
unwieldy and distracting. Instead of \w could we use \W instead?
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the many
Author: cy
Date: Sun Jan 6 21:24:44 2019
New Revision: 342815
URL: https://svnweb.freebsd.org/changeset/base/342815
Log:
Remove ipsd (IP Scan Detetor). It is unused and to my knowledge has
never been used on any platform that ipfilter has been on. However
it looks like it could be a useful
Author: cy
Date: Wed Jan 9 01:09:42 2019
New Revision: 342871
URL: https://svnweb.freebsd.org/changeset/base/342871
Log:
Remove unused sqlite3 bundled with heimdal.
Reported by: delphij@
Deleted:
head/crypto/heimdal/lib/sqlite/Makefile.am
head/crypto/heimdal/lib/sqlite/Makefile.in
/tmp/ian
>> >
>> >revolution > mkdir -p a/b/c
>> >revolution > ln -s a/b/c c
>> >
>> >revolution > cd /tmp/ian/a/b/c; pwd -L; pwd -P
>> >/tmp/ian/a/b/c
>> >/tmp/ian/a/b/c
>> >
>> &
Author: cy
Date: Sat Jan 12 17:56:23 2019
New Revision: 342972
URL: https://svnweb.freebsd.org/changeset/base/342972
Log:
Disable FTS3, FTS4, and RTREE in bundled and private sqlite3.
Suggested by: delphij@
Reviewed by: delphij@ (for secteam@)
MFC after:2 weeks
Differential Revis
jenkins email to recent committers from
this morning).
Inserting this here and calculating offsets for 64-bit platforms
without taking into consideration 32-bit is the reason why. Maybe we
should consider deorbit of 32-bit platforms sooner than later.
--
Cheers,
Cy Schubert
FreeBSD UNIX: W
In message
, Warner Losh writes:
> --656f96057f487d65
> Content-Type: text/plain; charset="UTF-8"
>
> On Sat, Jan 12, 2019 at 1:14 PM Cy Schubert
> wrote:
>
> > In message <201901121121.x0cblsiv058...@repo.freebsd.org>, Andrew
> > Turne
_frame");
> -_Static_assert(offsetof(struct thread, td_emuldata) == 0x334,
> +_Static_assert(offsetof(struct thread, td_emuldata) == 0x338,
> "struct thread KBI td_emuldata");
> _Static_assert(offsetof(struct proc, p_flag) == 0x68,
> "struct proc KBI p_flag"
if you expected new source code to compile. I expect
> this has changed, but the just of it should work in
> some aspect.
This fixes the potential bug of requiring a header file to be
installed. I suspect this to be an oversight at the time.
Good that it's fixed now.
--
Cheers,
Cy
installed. I suspect this to be an oversight at the time.
>>
>> Good that it's fixed now.
>
>Something is wrong, as infact com_err.h *IS*
>installed as /usr/include/com_err.h
>
>diff /usr/include/com_err.h /usr/src/contrib/com_err/com_err.h
This is the typical locatio
Author: cy
Date: Wed Jan 16 02:05:42 2019
New Revision: 343073
URL: https://svnweb.freebsd.org/changeset/base/343073
Log:
Remove an IRIX-only source file.
MFC after:1 week
Deleted:
head/contrib/ipfilter/mli_ipl.c
___
svn-src-head@freebsd.or
Author: cy
Date: Wed Jan 16 20:46:39 2019
New Revision: 343103
URL: https://svnweb.freebsd.org/changeset/base/343103
Log:
Remove redundant ipfilter version of pcap-bpf.h. As of r214535 it was
no longer needed.
MFC after:1 week
Deleted:
head/contrib/ipfilter/pcap-bpf.h
_
ould be in dd(1).
Why not submit a revision to add the functionality to dd?
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the many outweighs the greed of the few.
___
svn-src-head@freebsd.org mailing lis
In message
, Conrad Meyer writes:
> On Thu, Jan 17, 2019 at 12:22 PM Cy Schubert wrot
> e:
> > This is wrong. IIRC there was discussion that this should be in dd(1).
> > Why not submit a revision to add the functionality to dd?
>
> Well, it's wrong, but not because
stalled outside of $LOCALBASE. If anything,
as is it could be a port. It should not live in a user or project
branch of base nor should it be sourced out of some hypothetical quasi
FreeBSD source repository in ports or any other FreeBSD repo for
ng folks to support FreeBSD =
> in third-party projects as-is. Lowering the barrier of entry would allow =
> FreeBSD and its developers to better scale (and make FreeBSD more of a =
> first-class OS).
Yes.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
Th
ple when I was an MVS sysprog, MVS and JES were installed in one
repo while CICS and IMS were installed each in their own repos. That
was site specific but not out of the realm of possibilities here either.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the
s in /bin
and dd is already included in /rescue.
Everything about trim is wrong, even where it is put.
--
Cheers,
Cy Schubert
FreeBSD UNIX: Web: http://www.FreeBSD.org
The need of the many outweighs the greed of the few.
___
On January 18, 2019 7:11:05 AM PST, Eugene Grosbein wrote:
>On 18.01.2019 19:54, Cy Schubert wrote:
>
>> In message <81bb343b-ad8a-371d-d94f-f72c8dbce...@grosbein.net>,
>Eugene
>> Grosbein
>> writes:
>>> 18.01.2019 5:25, Maxim Sobolev wrote:
701 - 800 of 997 matches
Mail list logo