Author: brooks
Date: Wed Jul 17 23:09:40 2019
New Revision: 350098
URL: https://svnweb.freebsd.org/changeset/base/350098
Log:
Use ANSI C function definitions and declerations.
Obtained from:CheriBSD
MFC after:1 week
Sponsored by: DARPA, AFRL
Modified:
head/contrib/tcp_wra
Author: brooks
Date: Wed Jul 17 23:36:36 2019
New Revision: 350100
URL: https://svnweb.freebsd.org/changeset/base/350100
Log:
Use headers instead of manual declerations of standard functions and
variables.
Modified:
head/contrib/tcp_wrappers/inetcf.c
head/contrib/tcp_wrappers/scaffold.c
Author: brooks
Date: Wed Jul 17 23:43:14 2019
New Revision: 350101
URL: https://svnweb.freebsd.org/changeset/base/350101
Log:
Remove a duplicate global (rfc931_timeout).
It is declared here and in rfc931.c and unused here so keep that copy
and discard this one.
Obtained from:
Author: brooks
Date: Wed Jul 17 23:46:47 2019
New Revision: 350102
URL: https://svnweb.freebsd.org/changeset/base/350102
Log:
Remove redundent decleration of __elf_phdr_match_addr().
Obtained from:CheriBSD
MFC after:1 week
Sponsored by: DARPA, AFRL
Modified:
head/lib/libc
Author: brooks
Date: Thu Jul 18 21:33:55 2019
New Revision: 350116
URL: https://svnweb.freebsd.org/changeset/base/350116
Log:
Document that setmode(3) is not thread safe.
In some circumstances, setmode(3) may call umask(2) twice to retrieve
the current mode and then restore it. Between c
Author: brooks
Date: Thu Jul 18 21:37:50 2019
New Revision: 350117
URL: https://svnweb.freebsd.org/changeset/base/350117
Log:
Include a mode when creating files with openat().
Reviewed by: asomers
Obtained from:CheriBSD
MFC after:1 week
Sponsored by: DARPA, AFRL
Differe
On Thu, Jul 18, 2019 at 09:33:56PM +, Brooks Davis wrote:
> Author: brooks
> Date: Thu Jul 18 21:33:55 2019
> New Revision: 350116
> URL: https://svnweb.freebsd.org/changeset/base/350116
>
> Log:
> Document that setmode(3) is not thread safe.
>
> In some ci
Author: brooks
Date: Fri Jul 19 17:52:23 2019
New Revision: 350143
URL: https://svnweb.freebsd.org/changeset/base/350143
Log:
Chain Makefile.inc's so default are inherited as expected.
Remove unneeded or duplicate variables.
No functional change.
Obtained from:CheriBSD
M
Author: brooks
Date: Fri Jul 19 18:47:13 2019
New Revision: 350148
URL: https://svnweb.freebsd.org/changeset/base/350148
Log:
Restore WARNS?=1 here. I missed that libexec/bootpd/bootpgw existed.
Modified:
head/libexec/bootpd/Makefile.inc
Modified: head/libexec/bootpd/Makefile.inc
==
Author: brooks
Date: Fri Jul 19 22:54:09 2019
New Revision: 350157
URL: https://svnweb.freebsd.org/changeset/base/350157
Log:
Use the __DECONST macro rather than hand rolling it.
Obtained from:CheriBSD
MFC after:1 week
Sponsored by: DARPA, AFRL
Modified:
head/lib/libgssap
Author: brooks
Date: Fri Jul 19 23:10:43 2019
New Revision: 350158
URL: https://svnweb.freebsd.org/changeset/base/350158
Log:
Remove an unneeded temporary variable in two functions.
There is no need to convert an intptr_t to a long just to cast it to a
(void *).
Obtained from:
Author: brooks
Date: Fri Jul 19 23:39:21 2019
New Revision: 350159
URL: https://svnweb.freebsd.org/changeset/base/350159
Log:
Make setting mips endian and ABI less verbose.
Allow ABI to be over ridden to allow (with other changes) programs to be
built targeting ABIs other than the default
Author: brooks
Date: Fri Jul 19 23:58:30 2019
New Revision: 350160
URL: https://svnweb.freebsd.org/changeset/base/350160
Log:
Avoid copying too much from the input string.
This avoids reading past the end of the static strings. On a system
with bounds checking these tests fault.
Rev
Author: brooks
Date: Mon Jul 22 18:27:17 2019
New Revision: 350218
URL: https://svnweb.freebsd.org/changeset/base/350218
Log:
Be consistent about temporary variable use in adjacent loops.
Obtained from:CheriBSD
MFC after:1 week
Sponsored by: DARPA, AFRL
Modified:
head/lib
Author: brooks
Date: Mon Jul 22 21:07:58 2019
New Revision: 350228
URL: https://svnweb.freebsd.org/changeset/base/350228
Log:
ata_xpt: Use the correct union member when accessing valid.
In principle this should not matter as it's a union and they point to
the same memory location but base
Author: brooks
Date: Wed Jul 24 19:16:02 2019
New Revision: 350296
URL: https://svnweb.freebsd.org/changeset/base/350296
Log:
MFC r350098, r350100-r350101
r350098:
Use ANSI C function definitions and declerations.
r350100:
Use headers instead of manual declerations of standard func
Author: brooks
Date: Wed Jul 24 19:57:11 2019
New Revision: 350299
URL: https://svnweb.freebsd.org/changeset/base/350299
Log:
MFC r350102:
Remove redundent decleration of __elf_phdr_match_addr().
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Modified:
stable/12/lib/libc
Author: brooks
Date: Wed Jul 24 20:17:39 2019
New Revision: 350300
URL: https://svnweb.freebsd.org/changeset/base/350300
Log:
MFC r350049:
Fix two mismatches between function declaration and definition.
In both cases, function pointer arguments were inconsistently declared
and the re
Author: brooks
Date: Wed Jul 24 21:39:00 2019
New Revision: 350304
URL: https://svnweb.freebsd.org/changeset/base/350304
Log:
MFC r350067:
Add missing mode in open(2) calls with O_CREAT.
When O_CREAT is specified, the third, variadic argument is
required as the permission. If on is n
Author: brooks
Date: Wed Jul 24 21:40:34 2019
New Revision: 350305
URL: https://svnweb.freebsd.org/changeset/base/350305
Log:
MFC r350102:
Remove redundent decleration of __elf_phdr_match_addr().
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Modified:
stable/11/lib/libc
Author: brooks
Date: Thu Jul 25 17:30:19 2019
New Revision: 350328
URL: https://svnweb.freebsd.org/changeset/base/350328
Log:
MFC r350067:
Add missing mode in open(2) calls with O_CREAT.
When O_CREAT is specified, the third, variadic argument is
required as the permission. If on is n
Author: brooks
Date: Thu Jul 25 17:33:44 2019
New Revision: 350329
URL: https://svnweb.freebsd.org/changeset/base/350329
Log:
MFC r350116:
Document that setmode(3) is not thread safe.
In some circumstances, setmode(3) may call umask(2) twice to retrieve
the current mode and then rest
Author: brooks
Date: Thu Jul 25 18:15:43 2019
New Revision: 350330
URL: https://svnweb.freebsd.org/changeset/base/350330
Log:
MFC r350116:
Document that setmode(3) is not thread safe.
In some circumstances, setmode(3) may call umask(2) twice to retrieve
the current mode and then rest
Author: brooks
Date: Thu Jul 25 20:01:24 2019
New Revision: 350332
URL: https://svnweb.freebsd.org/changeset/base/350332
Log:
MFC r350117:
Include a mode when creating files with openat().
Reviewed by: asomers
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Differential
Author: brooks
Date: Thu Jul 25 20:34:50 2019
New Revision: 350334
URL: https://svnweb.freebsd.org/changeset/base/350334
Log:
MFC r350117:
Include a mode when creating files with openat().
Reviewed by: asomers
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Differential
Author: brooks
Date: Fri Jul 26 02:49:34 2019
New Revision: 350345
URL: https://svnweb.freebsd.org/changeset/base/350345
Log:
MFC r316803,320033,338277,350098,350100-350101
r316803:
tcp_wrappers: Sprinkle some bounds-checked string copying
Reported by: Coverity
CIDs: 10067
Author: brooks
Date: Wed Jul 31 17:01:23 2019
New Revision: 350469
URL: https://svnweb.freebsd.org/changeset/base/350469
Log:
MFC r350143, r350148
r350143:
Chain Makefile.inc's so default are inherited as expected.
Remove unneeded or duplicate variables.
No functional change.
Author: brooks
Date: Wed Jul 31 17:29:14 2019
New Revision: 350470
URL: https://svnweb.freebsd.org/changeset/base/350470
Log:
MFC r350143, r350148
r350143:
Chain Makefile.inc's so default are inherited as expected.
Remove unneeded or duplicate variables.
No functional change.
Author: brooks
Date: Wed Jul 31 17:56:07 2019
New Revision: 350473
URL: https://svnweb.freebsd.org/changeset/base/350473
Log:
MFC r350157:
Use the __DECONST macro rather than hand rolling it.
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Modified:
stable/12/lib/libgssap
Author: brooks
Date: Wed Jul 31 18:10:50 2019
New Revision: 350474
URL: https://svnweb.freebsd.org/changeset/base/350474
Log:
MFC r350157:
Use the __DECONST macro rather than hand rolling it.
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Modified:
stable/11/lib/libgssap
Author: brooks
Date: Wed Jul 31 18:25:52 2019
New Revision: 350475
URL: https://svnweb.freebsd.org/changeset/base/350475
Log:
MFC r350158:
Remove an unneeded temporary variable in two functions.
There is no need to convert an intptr_t to a long just to cast it to a
(void *).
Obt
Author: brooks
Date: Wed Jul 31 18:40:43 2019
New Revision: 350476
URL: https://svnweb.freebsd.org/changeset/base/350476
Log:
MFC r350159:
Make setting mips endian and ABI less verbose.
Allow ABI to be over ridden to allow (with other changes) programs to be
built targeting ABIs othe
Author: brooks
Date: Thu Aug 1 23:28:54 2019
New Revision: 350526
URL: https://svnweb.freebsd.org/changeset/base/350526
Log:
MFC r350160:
Avoid copying too much from the input string.
This avoids reading past the end of the static strings. On a system
with bounds checking these tes
Author: brooks
Date: Fri Aug 2 16:05:36 2019
New Revision: 350539
URL: https://svnweb.freebsd.org/changeset/base/350539
Log:
MFC r350160:
Avoid copying too much from the input string.
This avoids reading past the end of the static strings. On a system
with bounds checking these tes
Author: brooks
Date: Fri Aug 2 20:24:04 2019
New Revision: 350542
URL: https://svnweb.freebsd.org/changeset/base/350542
Log:
MFC r350218:
Be consistent about temporary variable use in adjacent loops.
Obtained from:CheriBSD
Sponsored by: DARPA, AFRL
Modified:
stable/12/lib
Author: brooks
Date: Fri Aug 2 20:31:02 2019
New Revision: 350543
URL: https://svnweb.freebsd.org/changeset/base/350543
Log:
MFC r350228:
ata_xpt: Use the correct union member when accessing valid.
In principle this should not matter as it's a union and they point to
the same memory
Author: brooks
Date: Fri Aug 2 22:33:43 2019
New Revision: 350545
URL: https://svnweb.freebsd.org/changeset/base/350545
Log:
MFC r350228:
ata_xpt: Use the correct union member when accessing valid.
In principle this should not matter as it's a union and they point to
the same memory
Author: brooks
Date: Fri Aug 9 23:50:57 2019
New Revision: 350827
URL: https://svnweb.freebsd.org/changeset/base/350827
Log:
Don't add -Wno-class-memaccess with older gcc.
This is a gcc 8.0+ warning which needed to be silenced on for the riscv
build. amd64-xtoolchain-gcc still uses gcc
Author: brooks
Date: Wed May 8 19:05:58 2019
New Revision: 347365
URL: https://svnweb.freebsd.org/changeset/base/347365
Log:
Update dme(4) to reflect that it will not be removed due to FCP-101.
dme(4) is the built-in NIC on a couple non-expandable mips platforms and
thus should remain.
Author: brooks
Date: Thu May 16 15:22:17 2019
New Revision: 347703
URL: https://svnweb.freebsd.org/changeset/base/347703
Log:
FCP-101: ae(4) is sufficently popular to be moved to the keep list.
Modified:
head/sys/dev/ae/if_ae.c
Modified: head/sys/dev/ae/if_ae.c
==
Author: brooks
Date: Thu May 16 18:00:17 2019
New Revision: 347848
URL: https://svnweb.freebsd.org/changeset/base/347848
Log:
MFC r347365, r347703
r347365:
Update dme(4) to reflect that it will not be removed due to FCP-101.
dme(4) is the built-in NIC on a couple non-expandable mips
Author: brooks
Date: Fri May 17 15:19:12 2019
New Revision: 347907
URL: https://svnweb.freebsd.org/changeset/base/347907
Log:
FCP-101: remove obsolete 10 and 10/100 Ethernet drivers.
Initial commit adding comment to ObsoleteFiles. Each driver will be
removed in a seperate commit to allow
Author: brooks
Date: Fri May 17 15:20:51 2019
New Revision: 347908
URL: https://svnweb.freebsd.org/changeset/base/347908
Log:
FCP-101: Remove bm(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:02 2019
New Revision: 347911
URL: https://svnweb.freebsd.org/changeset/base/347911
Log:
FCP-101: Remove ed(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:22:45 2019
New Revision: 347909
URL: https://svnweb.freebsd.org/changeset/base/347909
Log:
FCP-101: Remove cs(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:10 2019
New Revision: 347912
URL: https://svnweb.freebsd.org/changeset/base/347912
Log:
FCP-101: Remove ep(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:22:54 2019
New Revision: 347910
URL: https://svnweb.freebsd.org/changeset/base/347910
Log:
FCP-101: Remove de(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:00 2019
New Revision: 347918
URL: https://svnweb.freebsd.org/changeset/base/347918
Log:
FCP-101: Remove tl(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:43 2019
New Revision: 347916
URL: https://svnweb.freebsd.org/changeset/base/347916
Log:
FCP-101: Remove sf(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:08 2019
New Revision: 347919
URL: https://svnweb.freebsd.org/changeset/base/347919
Log:
FCP-101: Remove tx(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:18 2019
New Revision: 347913
URL: https://svnweb.freebsd.org/changeset/base/347913
Log:
FCP-101: Remove ex(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:26 2019
New Revision: 347914
URL: https://svnweb.freebsd.org/changeset/base/347914
Log:
FCP-101: Remove fe(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:17 2019
New Revision: 347920
URL: https://svnweb.freebsd.org/changeset/base/347920
Log:
FCP-101: Remove txp(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:26 2019
New Revision: 347921
URL: https://svnweb.freebsd.org/changeset/base/347921
Log:
FCP-101: Remove vx(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:34 2019
New Revision: 347915
URL: https://svnweb.freebsd.org/changeset/base/347915
Log:
FCP-101: Remove pcn(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:34 2019
New Revision: 347922
URL: https://svnweb.freebsd.org/changeset/base/347922
Log:
FCP-101: Remove wb(4)
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:23:52 2019
New Revision: 347917
URL: https://svnweb.freebsd.org/changeset/base/347917
Log:
FCP-101: Remove sn(4).
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:44 2019
New Revision: 347923
URL: https://svnweb.freebsd.org/changeset/base/347923
Log:
FCP-101: Remove xe(4)
Relnotes: yes
FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md
Reviewed by: jhb, imp
Differential Revision:
Author: brooks
Date: Fri May 17 15:24:54 2019
New Revision: 347924
URL: https://svnweb.freebsd.org/changeset/base/347924
Log:
FCP-101: Bump __FreeBSD_version for driver removal.
Remove gone_by_fcp101_dev macro.
Remove orphaned comment.
Modified:
head/sys/i386/conf/GENERIC
head/sys
Author: brooks
Date: Fri May 17 15:31:28 2019
New Revision: 347925
URL: https://svnweb.freebsd.org/changeset/base/347925
Log:
FCP-101: Bump __FreeBSD_version for device removal.
Bump accidentally omitted from r347924 due to a rebase accident.
Differential Revision: https://revi
Author: brooks
Date: Fri May 17 15:44:11 2019
New Revision: 347926
URL: https://svnweb.freebsd.org/changeset/base/347926
Log:
FCP-101: correct date of device driver removal.
Modified:
head/ObsoleteFiles.inc
Modified: head/ObsoleteFiles.inc
Author: brooks
Date: Fri May 17 18:16:55 2019
New Revision: 347940
URL: https://svnweb.freebsd.org/changeset/base/347940
Log:
Remove the notice that ae(4) will be removed in FreeBSD 13.
Modified:
head/share/man/man4/ae.4
Modified: head/share/man/man4/ae.4
Author: brooks
Date: Sat May 18 17:30:03 2019
New Revision: 347959
URL: https://svnweb.freebsd.org/changeset/base/347959
Log:
MFC r347940
Remove the notice that ae(4) will be removed in FreeBSD 13.
Modified:
stable/12/share/man/man4/ae.4
Directory Properties:
stable/12/ (props change
Author: brooks
Date: Sat May 18 20:43:13 2019
New Revision: 347962
URL: https://svnweb.freebsd.org/changeset/base/347962
Log:
MFC r339703, r347365, r347703, r347940
r339703:
Deprecate a number of less used 10 and 10/100 Ethernet devices.
The current deprecated list is: ae, bm, cs, de
Author: brooks
Date: Sat May 18 21:01:36 2019
New Revision: 347963
URL: https://svnweb.freebsd.org/changeset/base/347963
Log:
Change ed(4), ep(4), and fxp(4) examples to em(4).
ed(4) and ep(4) have been removed. fxp(4) remains popular in older
systems, but isn't as future proof as em(4).
Author: brooks
Date: Mon May 20 21:33:22 2019
New Revision: 348012
URL: https://svnweb.freebsd.org/changeset/base/348012
Log:
MFC r347963:
Change ed(4), ep(4), and fxp(4) examples to em(4).
ed(4) and ep(4) will be removed in FreeBSD 13. fxp(4) remains
popular in older systems, but is
Author: brooks
Date: Tue May 21 16:36:28 2019
New Revision: 348055
URL: https://svnweb.freebsd.org/changeset/base/348055
Log:
Revert r348012, MFC r347963.
Several of the changes touch actual defaults. These defaults are all
mistakes and no one should rely on them, but changing them in a s
On Mon, May 20, 2019 at 06:30:26PM -0700, Rodney W. Grimes wrote:
> > Author: brooks
> > Date: Mon May 20 21:33:22 2019
> > New Revision: 348012
> > URL: https://svnweb.freebsd.org/changeset/base/348012
> >
> > Log:
> > MFC r347963:
> >
> > Change ed(4), ep(4), and fxp(4) examples to em(4).
On Thu, May 23, 2019 at 07:46:21PM +0200, Kirill Ponomarev wrote:
> On 05/22, Conrad Meyer wrote:
> > Hi Brad,
> >
> > Ping. It's still broken. Can you revert this please?
>
> Please, revert these changes, it's still broken here as well.
In addition the in-tree breakage for updates, the broke
On Thu, May 23, 2019 at 06:37:05PM +, Baptiste Daroussin wrote:
> Author: bapt
> Date: Thu May 23 18:37:05 2019
> New Revision: 348185
> URL: https://svnweb.freebsd.org/changeset/base/348185
>
> Log:
> Move back group, master.passwd and shells to etc directory
>
> Use the .PATH mechanis
Author: brooks
Date: Thu May 30 20:56:23 2019
New Revision: 348446
URL: https://svnweb.freebsd.org/changeset/base/348446
Log:
makesyscalls.sh: always use absolute path for syscalls.conf
syscalls.conf is included using "." which per the Open Group:
If file does not contain a , the shel
On Fri, May 24, 2019 at 09:11:36AM +, Alexey Dokuchaev wrote:
> On Sun, Mar 10, 2019 at 03:11:40PM +, Alexey Dokuchaev wrote:
> > On Thu, Feb 28, 2019 at 07:47:51AM +, Alexey Dokuchaev wrote:
> > > On Wed, Feb 27, 2019 at 10:56:55PM +, Mateusz Guzik wrote:
> > > > New Revision: 3446
On Mon, Jun 10, 2019 at 09:00:34AM -0400, Shawn Webb wrote:
> On Mon, Jun 10, 2019 at 03:07:11AM +, Doug Moore wrote:
> > Author: dougm
> > Date: Mon Jun 10 03:07:10 2019
> > New Revision: 348843
> > URL: https://svnweb.freebsd.org/changeset/base/348843
> >
> > Log:
> > There are times when
Author: brooks
Date: Wed Jun 8 17:35:13 2016
New Revision: 301658
URL: https://svnweb.freebsd.org/changeset/base/301658
Log:
Vendor import of NetBSD's (un)vis(3) at 2016-06-08
Modified:
vendor/NetBSD/libc-vis/dist/unvis.c
vendor/NetBSD/libc-vis/dist/vis.3
vendor/NetBSD/libc-vis/dist/vis.
Author: brooks
Date: Wed Jun 8 17:36:01 2016
New Revision: 301660
URL: https://svnweb.freebsd.org/changeset/base/301660
Log:
Tag 2016-06-08 import of NetBSD's (un)vis(3)
Added:
vendor/NetBSD/libc-vis/20160608/
- copied from r301659, vendor/NetBSD/libc-vis/dist/
_
Author: brooks
Date: Wed Jun 8 18:21:27 2016
New Revision: 301679
URL: https://svnweb.freebsd.org/changeset/base/301679
Log:
Update to a June 8th snapshot of (un)vis form NetBSD.
This adds stravis() and some new encoding flags VIS_SHELL, VIS_META,
and VIS_NOLOCALE.
Assorted cleanups
Author: brooks
Date: Wed Jun 22 21:11:27 2016
New Revision: 302092
URL: https://svnweb.freebsd.org/changeset/base/302092
Log:
Replace use of the pipe(2) system call with pipe2(2) with a zero flags
value.
This eliminates the need for machine dependant assembly wrappers for
pipe(2).
Author: brooks
Date: Wed Jun 22 21:12:53 2016
New Revision: 302093
URL: https://svnweb.freebsd.org/changeset/base/302093
Log:
Add support for COMPAT10 keywords in syscalls.master.
Approved by: re (gjb)
Sponsored by: DARPA, AFRL
Modified:
head/sys/kern/makesyscalls.sh
Modified: head/s
Author: brooks
Date: Wed Jun 22 21:15:59 2016
New Revision: 302094
URL: https://svnweb.freebsd.org/changeset/base/302094
Log:
Mark the pipe() system call as COMPAT10.
As of r302092 libc uses pipe2() with a zero flags value instead of pipe().
Commit with regenerated files and implementa
Author: brooks
Date: Wed Jun 22 21:18:19 2016
New Revision: 302095
URL: https://svnweb.freebsd.org/changeset/base/302095
Log:
Generate syscall tables and update pipe() implementation after r302094.
Mark the pipe() system call as COMPAT10.
As of r302092 libc uses pipe2() with a zero fla
Author: brooks
Date: Thu Jun 23 00:29:03 2016
New Revision: 302096
URL: https://svnweb.freebsd.org/changeset/base/302096
Log:
Declare a svr4 version of pipe() now that sys_pipe() is no more.
Approved by: re (implicit, fixing build)
Sponsored by: DARPA, AFRL
Modified:
head/sys/compat/s
Author: brooks
Date: Thu Jun 23 00:30:09 2016
New Revision: 302097
URL: https://svnweb.freebsd.org/changeset/base/302097
Log:
Regen post r302096 and implement svr4_pipe().
Approved by: re (implict, fixing build)
Sponsored by: DARPA, AFRL
Modified:
head/sys/compat/svr4/svr4_filio.c
h
On Thu, Jun 23, 2016 at 12:30:32AM +, Glen Barber wrote:
> On Thu, Jun 23, 2016 at 12:29:03AM +0000, Brooks Davis wrote:
> > Author: brooks
> > Date: Thu Jun 23 00:29:03 2016
> > New Revision: 302096
> > URL: https://svnweb.freebsd.org/changeset/base/302096
> &g
On Wed, Jun 22, 2016 at 05:09:34PM -0700, John Baldwin wrote:
> On Wednesday, June 22, 2016 09:15:59 PM Brooks Davis wrote:
> > Author: brooks
> > Date: Wed Jun 22 21:15:59 2016
> > New Revision: 302094
> > URL: https://svnweb.freebsd.org/changeset/base/302094
> &
Author: brooks
Date: Thu Jun 23 21:02:05 2016
New Revision: 302152
URL: https://svnweb.freebsd.org/changeset/base/302152
Log:
Add an UPDATING entry for the pipe() -> pipe2() transition.
Approved by: re (gjb)
Sponsored by: DARPA, AFRL
Modified:
head/UPDATING
Modified: head/UPDATING
==
Author: brooks
Date: Thu Jun 23 21:09:07 2016
New Revision: 302154
URL: https://svnweb.freebsd.org/changeset/base/302154
Log:
Fix two typos in r302152.
Approved by: re (implicit)
Modified:
head/UPDATING
Modified: head/UPDATING
===
Author: brooks
Date: Wed Jul 20 18:00:22 2016
New Revision: 303103
URL: https://svnweb.freebsd.org/changeset/base/303103
Log:
Minor wording improvements to the note about pipe(2) removal.
MFC after:5 days
Sponsored by: DARPA, AFRL
Modified:
head/UPDATING
Modified: head/UPDATING
==
Author: brooks
Date: Wed Jul 20 18:02:07 2016
New Revision: 303104
URL: https://svnweb.freebsd.org/changeset/base/303104
Log:
Update to reflect the fact that pipe() is a wrapper around the pipe2()
system call.
Reviewed by: jhb, wblock
MFC after:5 days
Sponsored by: DAPRA, AFRL
Author: brooks
Date: Tue Nov 20 00:43:14 2018
New Revision: 340657
URL: https://svnweb.freebsd.org/changeset/base/340657
Log:
MFS r340643:
MFC r340489-r340490
r340489:
Fix freebsd32 support for PCIOCGETCONF.
This fixes regresssions in pciconf -l and some ports as reported on
f
Author: brooks
Date: Mon Nov 26 22:21:40 2018
New Revision: 341000
URL: https://svnweb.freebsd.org/changeset/base/341000
Log:
Record r340273, r340275, r340295, r340303 as merged.
These commits where the result of running "make sysent" and their
counterparts in this branch were direct comm
Author: brooks
Date: Thu Nov 29 21:00:56 2018
New Revision: 341263
URL: https://svnweb.freebsd.org/changeset/base/341263
Log:
Add helper functions to copy strings into struct image_args.
Given a zeroed struct image_args with an allocated buf member,
exec_args_add_fname() must be called to
On Fri, Nov 30, 2018 at 09:15:39PM +0300, Andrew Rybchenko wrote:
> On 30.11.2018 20:30, John Baldwin wrote:
> > On 11/29/18 11:11 PM, Andrew Rybchenko wrote:
> >> Author: arybchik
> >> Date: Fri Nov 30 07:11:05 2018
> >> New Revision: 341327
> >> URL: https://svnweb.freebsd.org/changeset/base/3413
Author: brooks
Date: Mon Dec 3 22:09:23 2018
New Revision: 341445
URL: https://svnweb.freebsd.org/changeset/base/341445
Log:
Remove declarations of syscalls not used in libthr.
Reviewed by: kib
Sponsored by: DARPA, AFRL
Modified:
head/lib/libthr/thread/thr_private.h
Modified: head/l
Author: brooks
Date: Tue Dec 4 00:15:47 2018
New Revision: 341449
URL: https://svnweb.freebsd.org/changeset/base/341449
Log:
Remove a needlessly clever hack to start init with sys_exec().
Construct a struct image_args with the help of new exec_args_*() helper
functions and call kern_exec
Author: brooks
Date: Tue Dec 4 00:22:08 2018
New Revision: 341450
URL: https://svnweb.freebsd.org/changeset/base/341450
Log:
Remove test for KSE (removed in 2008).
Approved by: julian
Deleted:
head/tools/KSE/
___
svn-src-all@freebsd.org maili
Author: brooks
Date: Tue Dec 4 16:48:47 2018
New Revision: 341474
URL: https://svnweb.freebsd.org/changeset/base/341474
Log:
Normalize COMPAT_43 syscall declarations.
Have ogetkerninfo, ogetpagesize, ogethostname, osethostname, and oaccept
declare o_args structs rather than non-compat on
Author: brooks
Date: Tue Dec 4 16:49:14 2018
New Revision: 341475
URL: https://svnweb.freebsd.org/changeset/base/341475
Log:
Regen after r341474: Normalize COMPAT_43 syscall declarations.
Modified:
head/sys/kern/init_sysent.c
head/sys/sys/sysproto.h
Modified: head/sys/kern/init_sysent.c
=
Author: brooks
Date: Tue Dec 4 21:56:45 2018
New Revision: 341495
URL: https://svnweb.freebsd.org/changeset/base/341495
Log:
Remove NOARGS from oaccept.
This was in the orignal patch, but lost in a rebase.
Reported by: andrew
Sponsored by: DARPA, AFRL
Differential Revision:
Author: brooks
Date: Tue Dec 4 21:57:26 2018
New Revision: 341496
URL: https://svnweb.freebsd.org/changeset/base/341496
Log:
Regen after r341495: Remove NOARGS from oaccept.
Modified:
head/sys/sys/sysproto.h
Modified: head/sys/sys/sysproto.h
=
Author: brooks
Date: Wed Dec 5 00:46:09 2018
New Revision: 341509
URL: https://svnweb.freebsd.org/changeset/base/341509
Log:
Remove MD __sys_* private symbols.
No references to any of these exist in the tree. The list was also
erratic with different architectures exporting different thin
501 - 600 of 1354 matches
Mail list logo