Author: hselasky
Date: Fri Jun 27 10:24:36 2014
New Revision: 267955
URL: http://svnweb.freebsd.org/changeset/base/267955
Log:
Add proper rangechecks in "axge_rx_frame()" function and
fix receive loop header parsing.
MFC after:3 days
PR: 191432
Modified:
head/sys/dev/us
Hi Kevin,
axge_rx_frame() looked a bit broken. I've tried to fix it:
http://svnweb.freebsd.org/changeset/base/267955
and
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191432
Please verify!
Thank you!
--HPS
___
svn-src-head@freebsd.org mailing
Author: jhb
Date: Fri Jun 27 15:20:34 2014
New Revision: 267959
URL: http://svnweb.freebsd.org/changeset/base/267959
Log:
Sort command flags in usage output and the manpages.
Modified:
head/usr.sbin/bhyve/bhyve.8
head/usr.sbin/bhyve/bhyverun.c
head/usr.sbin/bhyveload/bhyveload.8
head/us
Author: hselasky
Date: Fri Jun 27 15:23:12 2014
New Revision: 267960
URL: http://svnweb.freebsd.org/changeset/base/267960
Log:
Don't hide zero-length strings when doing sysctl listings.
MFC after:1 week
Modified:
head/sbin/sysctl/sysctl.c
Modified: head/sbin/sysctl/sysctl.c
Author: neel
Date: Fri Jun 27 17:18:54 2014
New Revision: 267963
URL: http://svnweb.freebsd.org/changeset/base/267963
Log:
After r267897 brought in a new version of file/libmagic, a filesystem image
is identified as "DOS/MBR boot sector" as opposed to "x86 boot sector".
This trips up vmru
Author: emaste
Date: Fri Jun 27 17:50:33 2014
New Revision: 267965
URL: http://svnweb.freebsd.org/changeset/base/267965
Log:
Use a common tunable to choose between vt(4)/sc(4)
With this change and previous work from ray@ it will be possible to put
both in GENERIC, and have one enabled by
Author: neel
Date: Fri Jun 27 18:00:38 2014
New Revision: 267966
URL: http://svnweb.freebsd.org/changeset/base/267966
Log:
Add post-mortem debugging for "EPT Misconfiguration" VM-exit. This error
is hard to reproduce so try to collect all the breadcrumbs when it happens.
Reviewed by: gre
Author: marius
Date: Fri Jun 27 18:24:20 2014
New Revision: 267967
URL: http://svnweb.freebsd.org/changeset/base/267967
Log:
- SC_NO_SYSMOUSE isn't currently supported by vt(4), so nuke it from vt.4.
- vt_vga(4) is a driver rather than a function so reference it accordingly.
- Uncomment HIST
Author: joel (doc committer)
Date: Fri Jun 27 18:32:20 2014
New Revision: 267968
URL: http://svnweb.freebsd.org/changeset/base/267968
Log:
Minor mdoc fix.
Modified:
head/share/man/man4/vt.4
Modified: head/share/man/man4/vt.4
===
Author: loos
Date: Fri Jun 27 18:40:14 2014
New Revision: 267969
URL: http://svnweb.freebsd.org/changeset/base/267969
Log:
Correct the buffer length check to avoid overflows.
Found with: Coverity Scan
CID: 1222502, 1222503
Modified:
head/usr.sbin/bsnmpd/modules/snmp_lm75/snm
Author: mjg
Date: Fri Jun 27 18:51:19 2014
New Revision: 267970
URL: http://svnweb.freebsd.org/changeset/base/267970
Log:
pw: fix up deletion of users from groups
Previuosly given 'foo,bar' members, removing 'foo' would result in an
infinite loop.
PR: 191427
Submitted by:
Author: loos
Date: Fri Jun 27 18:58:22 2014
New Revision: 267971
URL: http://svnweb.freebsd.org/changeset/base/267971
Log:
Simplify the code a little bit using the update_sensor_sysctl() routine to
retrieve the sensor temperature.
This also avoid the overflow that could happen on sysctlna
Author: adrian
Date: Fri Jun 27 19:07:00 2014
New Revision: 267972
URL: http://svnweb.freebsd.org/changeset/base/267972
Log:
Add missing variable declarations when using RSS.
Reported by: bryanv@
Modified:
head/sys/netinet/ip_output.c
Modified: head/sys/netinet/ip_output.c
=
Author: emaste
Date: Fri Jun 27 19:07:35 2014
New Revision: 267973
URL: http://svnweb.freebsd.org/changeset/base/267973
Log:
Add CTLFLAG_NOFETCH flag; console vty code runs before tunable fetch
Also remove redundant "" assignment for string in BSS.
Submitted by: hselasky@
Modified:
On 27 June 2014 12:33, Hans Petter Selasky wrote:
> Author: hselasky
> Date: Fri Jun 27 16:33:43 2014
> New Revision: 267961
> URL: http://svnweb.freebsd.org/changeset/base/267961
At r267969 sysctl strings are broken for me:
# uname -a
uname: sysctl: Cannot allocate memory
# sysctl kern.ostype
#
Hi,
Craig have hit an interesting issue today, where he tried to 'mv' a file
from ZFS dataset to a NFS mount, 'mv' bails out because chflags failed.
I think it's probably sensible to have mv ignoring UF_ARCHIVE, and set the
flag on the target unconditionally? i.e.:
Index: mv.c
=
Author: delphij
Date: Fri Jun 27 19:57:54 2014
New Revision: 267977
URL: http://svnweb.freebsd.org/changeset/base/267977
Log:
Always set UF_ARCHIVE on target (because they are by definition new files
and should be archived) and ignore error when we can't set it (e.g. NFS).
Reviewed by: k
Author: marius
Date: Fri Jun 27 19:57:57 2014
New Revision: 267978
URL: http://svnweb.freebsd.org/changeset/base/267978
Log:
In order to get vt(4) a bit closer to the feature set provided by sc(4),
implement options TERMINAL_{KERN,NORM}_ATTR. These are aliased to
SC_{KERNEL_CONS,NORM}_ATTR a
On Fri, Jun 27, 2014 at 12:48:29 -0700, Xin LI wrote:
> Hi,
>
> Craig have hit an interesting issue today, where he tried to 'mv' a file
> from ZFS dataset to a NFS mount, 'mv' bails out because chflags failed.
>
> I think it's probably sensible to have mv ignoring UF_ARCHIVE, and set the
> flag
On Fri, Jun 27, 2014 at 03:27:30PM -0400, Ed Maste wrote:
> On 27 June 2014 12:33, Hans Petter Selasky wrote:
> > Author: hselasky
> > Date: Fri Jun 27 16:33:43 2014
> > New Revision: 267961
> > URL: http://svnweb.freebsd.org/changeset/base/267961
>
> At r267969 sysctl strings are broken for me:
Author: dim
Date: Fri Jun 27 20:41:12 2014
New Revision: 267981
URL: http://svnweb.freebsd.org/changeset/base/267981
Log:
Pull in r211627 from upstream llvm trunk (by Bill Schmidt):
[PPC64] Fix PR20071 (fctiduz generated for targets lacking that
instruction)
PR20071 identifies
Author: dim
Date: Fri Jun 27 20:45:17 2014
New Revision: 267982
URL: http://svnweb.freebsd.org/changeset/base/267982
Log:
Add the llvm patch for r267981.
Added:
head/contrib/llvm/patches/patch-r267981-llvm-r211435-fix-ppc-fctiduz.diff
Added: head/contrib/llvm/patches/patch-r267981-llvm-r2114
Author: delphij
Date: Fri Jun 27 21:33:15 2014
New Revision: 267984
URL: http://svnweb.freebsd.org/changeset/base/267984
Log:
Use Intel's official name (Secure Key) per IntelĀ® Digital Random Number
Generator (DRNG) Software Implementation Guide.
Reviewed by: kib
Approved by: so
MFC
On Fri, Jun 27, 2014 at 07:57:54PM +, Xin LI wrote:
> Author: delphij
> Date: Fri Jun 27 19:57:54 2014
> New Revision: 267977
> URL: http://svnweb.freebsd.org/changeset/base/267977
> Log:
> Always set UF_ARCHIVE on target (because they are by definition new files
> and should be archived)
Author: mav
Date: Fri Jun 27 22:28:14 2014
New Revision: 267986
URL: http://svnweb.freebsd.org/changeset/base/267986
Log:
Remove odd practice of inverting error codes.
-EPERM is equal to ERESTART, returning which from ioctl() handler causes
infinite syscall restart.
MFC after:2 w
Author: rpaulo
Date: Fri Jun 27 22:38:42 2014
New Revision: 267987
URL: http://svnweb.freebsd.org/changeset/base/267987
Log:
Redefine SUNW based on SYSDIR in an attempt to fix a build problem.
MFC after:2 weeks
Modified:
head/sys/modules/dtrace/dtrace/Makefile
Modified: head/sys/mod
Author: gavin
Date: Sat Jun 28 00:01:18 2014
New Revision: 267991
URL: http://svnweb.freebsd.org/changeset/base/267991
Log:
Minimal update for cvsup -> svn change.
Modified:
head/tools/tools/sysbuild/README
Modified: head/tools/tools/sysbuild/README
==
On Fri, Jun 27, 2014 at 12:48:29PM -0700 I heard the voice of
Xin LI, and lo! it spake thus:
>
> Craig have hit an interesting issue today, where he tried to 'mv' a
> file from ZFS dataset to a NFS mount, 'mv' bails out because chflags
> failed.
I've been getting these for a while on my -CURRENT
Author: hselasky
Date: Sat Jun 28 03:59:04 2014
New Revision: 267993
URL: http://svnweb.freebsd.org/changeset/base/267993
Log:
Fix regression issue after r267961. Handle special string case for
SYSCTLs like previously.
MFC after:2 weeks
Reported by: several people
Modified:
head
On 06/27/14 22:19, Mateusz Guzik wrote:
On Fri, Jun 27, 2014 at 03:27:30PM -0400, Ed Maste wrote:
On 27 June 2014 12:33, Hans Petter Selasky wrote:
Author: hselasky
Date: Fri Jun 27 16:33:43 2014
New Revision: 267961
URL: http://svnweb.freebsd.org/changeset/base/267961
At r267969 sysctl stri
On Fri, Jun 27, 2014 at 22:28:14 +, Alexander Motin wrote:
> Author: mav
> Date: Fri Jun 27 22:28:14 2014
> New Revision: 267986
> URL: http://svnweb.freebsd.org/changeset/base/267986
>
> Log:
> Remove odd practice of inverting error codes.
>
> -EPERM is equal to ERESTART, returning whi
Author: mjg
Date: Sat Jun 28 05:18:03 2014
New Revision: 268000
URL: http://svnweb.freebsd.org/changeset/base/268000
Log:
Make sure to always clear p_fd for process getting rid of its filetable.
Filetable can be shared with other processes. Previous code failed to
clear the pointer for al
Author: mjg
Date: Sat Jun 28 05:41:53 2014
New Revision: 268001
URL: http://svnweb.freebsd.org/changeset/base/268001
Log:
Make fdunshare accept only td parameter.
Proc had to match the thread anyway and 2 parameters were inconsistent
with the rest.
MFC after:1 week
Modified:
h
Author: mjg
Date: Sat Jun 28 05:51:45 2014
New Revision: 268002
URL: http://svnweb.freebsd.org/changeset/base/268002
Log:
Call fdcloseexec right after fdunshare.
No functional changes.
MFC after:1 week
Modified:
head/sys/kern/kern_exec.c
Modified: head/sys/kern/kern_exec.c
34 matches
Mail list logo