Author: vangyzen
Date: Sat Dec 19 02:49:59 2015
New Revision: 292464
URL: https://svnweb.freebsd.org/changeset/base/292464
Log:
MFC r289315,r292216
resolver: automatically reload /etc/resolv.conf
On each resolver query, use stat(2) to see if the modification time
of /etc/resolv.conf
Author: vangyzen
Date: Sat Dec 19 02:47:05 2015
New Revision: 292463
URL: https://svnweb.freebsd.org/changeset/base/292463
Log:
MFC r289837
resolver: abuse _res a little less
In the past, _res was a global variable. Now, it's multiple function calls.
Several functions in the resolve
Author: vangyzen
Date: Sat Dec 19 02:41:31 2015
New Revision: 292462
URL: https://svnweb.freebsd.org/changeset/base/292462
Log:
MFC r289315, r292216
resolver: automatically reload /etc/resolv.conf
On each resolver query, use stat(2) to see if the modification time
of /etc/resolv.conf
Author: vangyzen
Date: Sat Dec 19 02:35:32 2015
New Revision: 292461
URL: https://svnweb.freebsd.org/changeset/base/292461
Log:
MFC r289837
resolver: abuse _res a little less
In the past, _res was a global variable. Now, it's multiple function calls.
Several functions in the resolve
Author: nwhitehorn
Date: Sat Dec 19 02:16:38 2015
New Revision: 292460
URL: https://svnweb.freebsd.org/changeset/base/292460
Log:
Provide link state reporting so that ifconfig_llan0="DHCP" works. The
reported link state is fictional (always up) since the hypervisor does
not provide this info
> Il giorno 18/dic/2015, alle ore 18:46, Conrad Meyer ha
> scritto:
>
> On Fri, Dec 18, 2015 at 2:44 PM, Pedro Giffuni wrote:
>> Hi Warner;
>>
>>> Il giorno 18/dic/2015, alle ore 17:01, Warner Losh ha
>>> scritto:
>>>
>>> Isn’t strlcpy() the more appropriate interface? strncpy doesn’t guar
On 18/12/2015 9:55 AM, Steven Hartland wrote:
> On 17/12/2015 19:20, Gleb Smirnoff wrote:
>>Steven,
>>
>> another feasible solution for the design described in the 156226
>> would be to run STP on the switches, and if_bridge(4) instead of
>> if_lagg(4) on FreeBSD, also with STP enabled. Would w
> On Dec 18, 2015, at 15:46, Conrad Meyer wrote:
>
>> On Fri, Dec 18, 2015 at 2:44 PM, Pedro Giffuni wrote:
>> Hi Warner;
>>
>>> Il giorno 18/dic/2015, alle ore 17:01, Warner Losh ha
>>> scritto:
>>>
>>> Isn’t strlcpy() the more appropriate interface? strncpy doesn’t guarantee
>>> NUL term
Author: ume
Date: Sat Dec 19 01:24:07 2015
New Revision: 292457
URL: https://svnweb.freebsd.org/changeset/base/292457
Log:
MFC r292129:
RFC 3493 requires ignoring the loopback address for AI_ADDRCONFIG.
Since it breaks certain jail setup, we ignore just 127.0.0.1
instead of whole loo
Author: ume
Date: Sat Dec 19 01:21:28 2015
New Revision: 292456
URL: https://svnweb.freebsd.org/changeset/base/292456
Log:
MFC r292129:
RFC 3493 requires ignoring the loopback address for AI_ADDRCONFIG.
Since it breaks certain jail setup, we ignore just 127.0.0.1
instead of whole loo
On Fri, Dec 18, 2015 at 2:44 PM, Pedro Giffuni wrote:
> Hi Warner;
>
>> Il giorno 18/dic/2015, alle ore 17:01, Warner Losh ha
>> scritto:
>>
>> Isn’t strlcpy() the more appropriate interface? strncpy doesn’t guarantee
>> NUL termination.
>>
>
> Maybe, but we were using strcpy() which doesn’t gu
Author: pfg
Date: Fri Dec 18 23:05:36 2015
New Revision: 292455
URL: https://svnweb.freebsd.org/changeset/base/292455
Log:
ed(1): Prevent possible string overflows
Use strlcpy instead of strncpy to guarantee NULL termination.
Pointed out by: imp
CID: 1007252
X-MFC wi
Hi Warner;
> Il giorno 18/dic/2015, alle ore 17:01, Warner Losh ha
> scritto:
>
> Isn’t strlcpy() the more appropriate interface? strncpy doesn’t guarantee NUL
> termination.
>
Maybe, but we were using strcpy() which doesn’t guarantee NULL termination
either
and things have been working. I
Isn’t strlcpy() the more appropriate interface? strncpy doesn’t guarantee NUL
termination.
Warner
> On Dec 18, 2015, at 2:58 PM, Pedro F. Giffuni wrote:
>
> Author: pfg
> Date: Fri Dec 18 21:58:42 2015
> New Revision: 292454
> URL: https://svnweb.freebsd.org/changeset/base/292454
>
> Log:
>
Author: pfg
Date: Fri Dec 18 21:58:42 2015
New Revision: 292454
URL: https://svnweb.freebsd.org/changeset/base/292454
Log:
ed(1): Prevent possible string overflows
CID: 1007252
MFC after:2 weeks
Modified:
head/bin/ed/main.c
Modified: head/bin/ed/main.c
===
Author: bapt
Date: Fri Dec 18 21:34:28 2015
New Revision: 292453
URL: https://svnweb.freebsd.org/changeset/base/292453
Log:
Simplify the locale generated Makefiles by using bmake multi variables for
loops
Modified:
head/share/colldef/Makefile
head/share/ctypedef/Makefile
head/share/monet
> On 16 Dec 2015, at 01:56, Randall Stewart wrote:
>
> Author: rrs
> Date: Wed Dec 16 00:56:45 2015
> New Revision: 292309
> URL: https://svnweb.freebsd.org/changeset/base/292309
>
> Log:
> First cut of the modularization of our TCP stack. Still
> to do is to clean up the timer handling using
On Fri, 18 Dec 2015, John Baldwin wrote:
Log:
Fix the precious change to check the pointer returned by malloc().
Submitted by: luke
Pointy hat to: jhb
Of course, malloc can't fail, especially for small utilities like boot0cfg,
especially in -current.
Modified: head/usr.sbin/boot0cfg/bo
Author: jilles
Date: Fri Dec 18 19:58:34 2015
New Revision: 292450
URL: https://svnweb.freebsd.org/changeset/base/292450
Log:
MFC r291770: rc.subr: Check for running daemons before a custom start_cmd
is executed.
Currently rc scripts implementing their own start_cmd do not enjoy the
ben
On Friday, December 18, 2015 05:53:19 PM Hajimu UMEMOTO wrote:
> Author: ume
> Date: Fri Dec 18 17:53:18 2015
> New Revision: 292444
> URL: https://svnweb.freebsd.org/changeset/base/292444
>
> Log:
> Add AI_V4MAPPED and AI_ALL support for getaddrinfo(3).
>
> PR: 198092
> MFC after
On Friday, December 18, 2015 05:52:09 PM John Baldwin wrote:
> Author: jhb
> Date: Fri Dec 18 17:52:08 2015
> New Revision: 292443
> URL: https://svnweb.freebsd.org/changeset/base/292443
>
> Log:
> Fix the precious change to check the pointer returned by malloc().
s/precious/previous/. The pre
On Friday, December 18, 2015 02:17:16 PM Marcelo Araujo wrote:
> 2015-12-18 13:53 GMT+08:00 Garrett Cooper :
>
> >
> > > On Dec 17, 2015, at 21:36, luke wrote:
> > >
> > >> On Fri, Dec 18, 2015 at 4:42 AM, John Baldwin wrote:
> > >> Author: jhb
> > >> Date: Thu Dec 17 20:42:05 2015
> > >> New Re
David,
I apologize for the slow reply. Your message went to my "stable" box,
which I read less often.
On 11/14/2015 12:30, David Chisnall wrote:
> On 26 Oct 2015, at 16:21, Eric van Gyzen
> wrote:
>>
>> One counter-argument to this change is that most applications
>> already use SIMD, and the
Author: jkim
Date: Fri Dec 18 18:36:29 2015
New Revision: 292448
URL: https://svnweb.freebsd.org/changeset/base/292448
Log:
Tag ACPICA 20151218.
Added:
vendor-sys/acpica/20151218/
- copied from r292447, vendor-sys/acpica/dist/
___
svn-src-all
Author: jkim
Date: Fri Dec 18 18:35:46 2015
New Revision: 292447
URL: https://svnweb.freebsd.org/changeset/base/292447
Log:
Import ACPICA 20151218.
Modified:
vendor-sys/acpica/dist/changes.txt
vendor-sys/acpica/dist/source/common/acfileio.c
vendor-sys/acpica/dist/source/common/adisasm.c
Author: ume
Date: Fri Dec 18 18:08:53 2015
New Revision: 292446
URL: https://svnweb.freebsd.org/changeset/base/292446
Log:
Add AI_V4MAPPED and AI_ALL support for getaddrinfo(3).
We need to change netdb.h to make it actually enabled.
PR: 198092
MFC after:1 week
Modified:
Author: ume
Date: Fri Dec 18 17:57:31 2015
New Revision: 292445
URL: https://svnweb.freebsd.org/changeset/base/292445
Log:
Use _map_v4v6_address().
Suggested by: hrs
MFC after:1 week
Modified:
head/lib/libc/net/getaddrinfo.c
Modified: head/lib/libc/net/getaddrinfo.c
==
Author: ume
Date: Fri Dec 18 17:53:18 2015
New Revision: 292444
URL: https://svnweb.freebsd.org/changeset/base/292444
Log:
Add AI_V4MAPPED and AI_ALL support for getaddrinfo(3).
PR: 198092
MFC after:1 week
Modified:
head/lib/libc/net/getaddrinfo.3
head/lib/libc/net/geta
Author: jhb
Date: Fri Dec 18 17:52:08 2015
New Revision: 292443
URL: https://svnweb.freebsd.org/changeset/base/292443
Log:
Fix the precious change to check the pointer returned by malloc().
Submitted by: luke
Pointy hat to:jhb
Modified:
head/usr.sbin/boot0cfg/boot0cfg.c
Modif
Author: emaste
Date: Fri Dec 18 17:39:54 2015
New Revision: 292442
URL: https://svnweb.freebsd.org/changeset/base/292442
Log:
loader.efi: show EFI error number, not full status value
EFI return values set the high bit to indicate an error. The log
messages changed here are printed only in
Author: ume
Date: Fri Dec 18 17:30:22 2015
New Revision: 292441
URL: https://svnweb.freebsd.org/changeset/base/292441
Log:
Generate ipnodes.by{addr,name} from /etc/hosts for compatibility with
FreeBSD local name resolution.
If /var/yp/ipnodes exists, we generate them from it for backward
c
Author: mjg
Date: Fri Dec 18 16:33:15 2015
New Revision: 292440
URL: https://svnweb.freebsd.org/changeset/base/292440
Log:
proc: fix a race which could result in dereference of bad p_pgrp pointer on
fork
During fork p_starcopy - p_endcopy area of a process is populated with bcopy
with on
-Original Message-
From: on behalf of Shawn Webb
Date: 2015-12-18, Friday at 06:47
To: Warner Losh
Cc: , ,
Subject: Re: svn commit: r292436 - head/sys/geom/sched
>Additionally, this fixed a potential NULL dereference bug.
That's actually what I noticed and mentioned to Warner; he
Author: royger
Date: Fri Dec 18 14:56:49 2015
New Revision: 292439
URL: https://svnweb.freebsd.org/changeset/base/292439
Log:
MFC r291156:
Ignore the inbound checksum flags when doing packet forwarding in netvsc
driver.
Sponsored by: Microsoft OSTC
PR: 203630
Modified:
Author: royger
Date: Fri Dec 18 14:52:12 2015
New Revision: 292438
URL: https://svnweb.freebsd.org/changeset/base/292438
Log:
MFC r292258:
hyperv/kvp: wake up the daemon if it's sleeping due to poll()
Submitted by: Dexuan Cui
Sponsored by: Microsoft OSTC
Modified:
On Fri, Dec 18, 2015 at 02:10:00PM +, Warner Losh wrote:
> Author: imp
> Date: Fri Dec 18 14:10:00 2015
> New Revision: 292436
> URL: https://svnweb.freebsd.org/changeset/base/292436
>
> Log:
> It turns out that it's OK to sleep in this context, so use M_WAITOK
> for the softc for the dela
Author: nwhitehorn
Date: Fri Dec 18 14:35:27 2015
New Revision: 292437
URL: https://svnweb.freebsd.org/changeset/base/292437
Log:
Enable PRINTF_BUFR_SIZE on powerpc64, following r194204 on x86. The kernel
message garbling was becoming very noticeable on the 64-CPU systems we now
support and
Author: imp
Date: Fri Dec 18 14:10:00 2015
New Revision: 292436
URL: https://svnweb.freebsd.org/changeset/base/292436
Log:
It turns out that it's OK to sleep in this context, so use M_WAITOK
for the softc for the delay module.
Noticed by: rpokala@
Modified:
head/sys/geom/sched/gs_delay
On 17/12/2015 23:46, Gleb Smirnoff wrote:
On Thu, Dec 17, 2015 at 11:26:52PM +, Steven Hartland wrote:
S> You may have not read all the detail in the review so you might not have
S> noticed that I
S> identified that carp IPv6 NA was broken by r251584 which was committed 2 1/2
S> years ago. I'
Author: ume
Date: Fri Dec 18 11:20:50 2015
New Revision: 292435
URL: https://svnweb.freebsd.org/changeset/base/292435
Log:
- Keep hosts.by{name,addr} IPv4 only.
- Add comment how we handle hosts and ipnodes. (from NetBSD)
MFC after:1 week.
Modified:
head/usr.sbin/ypserv/Makefile.yp
Author: brueffer
Date: Fri Dec 18 09:50:24 2015
New Revision: 292434
URL: https://svnweb.freebsd.org/changeset/base/292434
Log:
Add au_notify.2 and MLINKs (added in OpenBSM 1.2 alpha 4).
MFC after:2 weeks
Modified:
head/lib/libbsm/Makefile
Modified: head/lib/libbsm/Makefile
Author: brueffer
Date: Fri Dec 18 09:49:11 2015
New Revision: 292433
URL: https://svnweb.freebsd.org/changeset/base/292433
Log:
Regenerate config.h for OpenBSM 1.2 alpha 4.
MFC after:2 weeks
Modified:
head/contrib/openbsm/config/config.h
Modified: head/contrib/openbsm/config/config.
Author: brueffer
Date: Fri Dec 18 09:48:01 2015
New Revision: 292432
URL: https://svnweb.freebsd.org/changeset/base/292432
Log:
Merge OpenBSM 1.2 alpha 4.
MFC after:2 weeks
Relnotes: yes
Added:
head/contrib/openbsm/.travis.yml
- copied unchanged from r292016, vendor/openbs
43 matches
Mail list logo