Author: glebius
Date: Tue Dec 18 08:09:44 2012
New Revision: 244386
URL: http://svnweb.freebsd.org/changeset/base/244386
Log:
Clear correct flag in INET6 case.
Modified:
head/sys/netinet/tcp_input.c
Modified: head/sys/netinet/tcp_input.c
==
Author: glebius
Date: Tue Dec 18 08:14:16 2012
New Revision: 244387
URL: http://svnweb.freebsd.org/changeset/base/244387
Log:
Fix !INET6 build after r244365.
Modified:
head/sys/netinet/tcp_input.c
Modified: head/sys/netinet/tcp_input.c
Andrey,
On Tue, Dec 18, 2012 at 08:14:16AM +, Gleb Smirnoff wrote:
T> Author: glebius
T> Date: Tue Dec 18 08:14:16 2012
T> New Revision: 244387
T> URL: http://svnweb.freebsd.org/changeset/base/244387
T>
T> Log:
T> Fix !INET6 build after r244365.
T>
T> Modified:
T> head/sys/netinet/tcp_
Thanks!
Adrian
On 18 December 2012 00:14, Gleb Smirnoff wrote:
> Author: glebius
> Date: Tue Dec 18 08:14:16 2012
> New Revision: 244387
> URL: http://svnweb.freebsd.org/changeset/base/244387
>
> Log:
> Fix !INET6 build after r244365.
>
> Modified:
> head/sys/netinet/tcp_input.c
>
> Modif
Author: monthadar
Date: Tue Dec 18 08:41:23 2012
New Revision: 244388
URL: http://svnweb.freebsd.org/changeset/base/244388
Log:
wtap: fix clang warning.
* The warning message was:
'warning error: format string is not a string literal';
* Changed how make_dev is called, now a string
Author: monthadar
Date: Tue Dec 18 08:44:59 2012
New Revision: 244389
URL: http://svnweb.freebsd.org/changeset/base/244389
Log:
wtap should check if ieee80211_vap_setup fails.
* If ieee80211_vap_setup fails, we free allocated M_80211_VAP
memory and return NULL;
Approved by: adrian
Monthadar,
On Tue, Dec 18, 2012 at 08:44:59AM +, Monthadar Al Jaberi wrote:
M> Author: monthadar
M> Date: Tue Dec 18 08:44:59 2012
M> New Revision: 244389
M> URL: http://svnweb.freebsd.org/changeset/base/244389
M>
M> Log:
M> wtap should check if ieee80211_vap_setup fails.
M>
M> * If
On 18.12.2012 06:40, Oleksandr Tymoshenko wrote:
On 2012-12-08, at 1:21 PM, Alan Cox wrote:
On 12/08/2012 14:32, Andre Oppermann wrote:
.. skipped ..
The trouble seems to come from NSFBUFS which is (512 + maxusers * 16)
resulting in a kernel map of (512 + 400 * 16) * PAGE_SIZE = 27MB.
Author: rwatson
Date: Tue Dec 18 09:32:44 2012
New Revision: 244390
URL: http://svnweb.freebsd.org/changeset/base/244390
Log:
Merge OpenBSM 1.2-alpha3 from head to stable/9, upgrading from the previous
OpenBSM 1.1p2:
OpenBSM 1.2 alpha 3
- Various minor tweaks to the auditdistd build
On Tue, 18 Dec 2012, Andrey Zonov wrote:
Author: zont
Date: Tue Dec 18 07:27:50 2012
New Revision: 244383
URL: http://svnweb.freebsd.org/changeset/base/244383
Log:
- Set memorylocked limit to 64Kb for default login class.
This prevents unprivileged users to lock too much memory.
- Set mem
On Tue, 18 Dec 2012, Robert Watson wrote:
Log:
- Set memorylocked limit to 64Kb for default login class.
This prevents unprivileged users to lock too much memory.
- Set memorylocked limit to 64Mb for daemon login class.
Some daemons such as amd(8) and watchdogd(8) calls mlockall(2) on
On 12/17/2012 23:40, Oleksandr Tymoshenko wrote:
> On 2012-12-08, at 1:21 PM, Alan Cox wrote:
>
>> On 12/08/2012 14:32, Andre Oppermann wrote:
> .. skipped ..
>
>>> The trouble seems to come from NSFBUFS which is (512 + maxusers * 16)
>>> resulting in a kernel map of (512 + 400 * 16) * PAGE_SIZE =
Author: rwatson
Date: Tue Dec 18 10:23:58 2012
New Revision: 244391
URL: http://svnweb.freebsd.org/changeset/base/244391
Log:
Merge r243751 from head to stable/9:
Merge OpenBSM 1.2-alpha2 changes from contrib/openbsm to
src/sys/{bsm,security/audit}. There are a few tweaks to help wit
Author: rwatson
Date: Tue Dec 18 10:29:28 2012
New Revision: 244392
URL: http://svnweb.freebsd.org/changeset/base/244392
Log:
Merge r243798 from head to stable/9:
Add auditdistd to the pre-install required uid check list.
Modified:
stable/9/Makefile.inc1 (contents, props changed)
Dir
/www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
Items affecting the ports and packages system can be found in
/usr/ports/UPDATING. Please read that file before running portupgrade.
+20121218:
+ With the addition of auditdistd(8), a new auditdistd user is now
+ depended on
On Tue, Dec 18, 2012 at 9:53 AM, Gleb Smirnoff wrote:
> Monthadar,
>
> On Tue, Dec 18, 2012 at 08:44:59AM +, Monthadar Al Jaberi wrote:
> M> Author: monthadar
> M> Date: Tue Dec 18 08:44:59 2012
> M> New Revision: 244389
> M> URL: http://svnweb.freebsd.org/changeset/base/244389
> M>
> M> Log
On 17.12.2012 23:12, Andriy Gapon wrote:
on 18/12/2012 00:02 Adrian Chadd said the following:
Why are they there, if we just ship production releases with
INVARIANTS disabled?
Because there is an axis orthogonal to asserting correctness - performance.
Indeed. There are, or will be, a couple
On 18.12.2012 09:24, Gleb Smirnoff wrote:
Andrey,
On Tue, Dec 18, 2012 at 08:14:16AM +, Gleb Smirnoff wrote:
T> Author: glebius
T> Date: Tue Dec 18 08:14:16 2012
T> New Revision: 244387
T> URL: http://svnweb.freebsd.org/changeset/base/244387
T>
T> Log:
T> Fix !INET6 build after r244365.
On Tue, Dec 18, 2012 at 12:30:53PM +0100, Monthadar Al Jaberi wrote:
M> On Tue, Dec 18, 2012 at 9:53 AM, Gleb Smirnoff wrote:
M> > Monthadar,
M> >
M> > On Tue, Dec 18, 2012 at 08:44:59AM +, Monthadar Al Jaberi wrote:
M> > M> Author: monthadar
M> > M> Date: Tue Dec 18 08:44:59 2012
M> > M> Ne
Author: rwatson
Date: Tue Dec 18 14:31:55 2012
New Revision: 244397
URL: http://svnweb.freebsd.org/changeset/base/244397
Log:
Apply minor local adjustment to OpenBSM's parse.y due to differences in Yacc
between 10-CURRENT and 9-STABLE; this will allow the soon-to-be-connected
auditdistd to b
Author: rwatson
Date: Tue Dec 18 14:32:53 2012
New Revision: 244398
URL: http://svnweb.freebsd.org/changeset/base/244398
Log:
Merge r244181 from head to stable/9:
Fix the location of auditdistd configuration file.
Reported by:Johan Hendriks
Merge remaining unmerged portio
On 18 December 2012 08:36, Andrey Zonov wrote:
> Author: zont
> Date: Tue Dec 18 07:36:45 2012
> New Revision: 244385
> URL: http://svnweb.freebsd.org/changeset/base/244385
>
> Log:
> - Add sysctl to allow unprivileged users to call mlock(2)-family system
> calls and turn it on.
> - Do not
Author: monthadar
Date: Tue Dec 18 16:11:13 2012
New Revision: 244399
URL: http://svnweb.freebsd.org/changeset/base/244399
Log:
wtap fix malloc/free.
* Remove malloc/free pointer cast;
* Check return value from malloc;
Submitted by: glebius
Approved by: adrian (mentor)
Modified:
Author: monthadar
Date: Tue Dec 18 16:15:20 2012
New Revision: 244400
URL: http://svnweb.freebsd.org/changeset/base/244400
Log:
wtap should not set the IEEE80211_F_DATAPAD flag;
Approved by: adrian (mentor)
Modified:
head/sys/dev/wtap/if_wtap.c
Modified: head/sys/dev/wtap/if_wtap.c
On Tue, Dec 18, 2012 at 2:13 PM, Gleb Smirnoff wrote:
> On Tue, Dec 18, 2012 at 12:30:53PM +0100, Monthadar Al Jaberi wrote:
> M> On Tue, Dec 18, 2012 at 9:53 AM, Gleb Smirnoff wrote:
> M> > Monthadar,
> M> >
> M> > On Tue, Dec 18, 2012 at 08:44:59AM +, Monthadar Al Jaberi wrote:
> M> > M>
Author: brooks
Date: Tue Dec 18 16:37:24 2012
New Revision: 244401
URL: http://svnweb.freebsd.org/changeset/base/244401
Log:
Replace our implementation of the vis(3) and unvis(3) APIs with
NetBSD's. This output size limited versions of vis and unvis functions
as well as a set of vis variant
Author: emaste
Date: Tue Dec 18 18:04:29 2012
New Revision: 244403
URL: http://svnweb.freebsd.org/changeset/base/244403
Log:
Welcome Mark Johnston (markj@) as a new src committer. I will be his
mentor, with Ryan Stone as co-mentor.
Approved by: core
Modified:
svnadmin/conf/access
sv
Author: mjg
Date: Tue Dec 18 18:34:36 2012
New Revision: 244404
URL: http://svnweb.freebsd.org/changeset/base/244404
Log:
prison_racct_detach can be called for not fully initialized jail, so make it
check that the jail has racct before doing anything
PR: kern/174436
Reviewed by
Author: dumbbell
Date: Tue Dec 18 20:02:53 2012
New Revision: 244405
URL: http://svnweb.freebsd.org/changeset/base/244405
Log:
psm: Support detection of Synaptics touchpad v7.5 and above
Starting with firmware v7.5, the "Read TouchPad Modes" ($01) and "Read
Capabilities" ($02) commands ch
On Sunday, December 16, 2012 6:06:12 pm Pawel Jakub Dawidek wrote:
> Author: pjd
> Date: Sun Dec 16 23:06:12 2012
> New Revision: 244320
> URL: http://svnweb.freebsd.org/changeset/base/244320
>
> Log:
> Implement -m option to savecore(8) that allows to limit number of kernel
> dumps stored. On
On Sunday, December 16, 2012 10:05:48 pm Adrian Chadd wrote:
> On 16 December 2012 15:32, Navdeep Parhar wrote:
>
>
> >> The status quo _does not change_ by default.
> >
> > So now we have a knob that could be used to change the behaviour of all
> > the KASSERTs in the system; one that hints tha
Author: delphij
Date: Tue Dec 18 20:47:23 2012
New Revision: 244406
URL: http://svnweb.freebsd.org/changeset/base/244406
Log:
Update arcmsr(4) to vendor version 1.20.00.26, this adds
support for their new RAID adapter ARC-1214.
Many thanks to Areca for continuing to support FreeBSD.
Author: eadler
Date: Tue Dec 18 21:02:38 2012
New Revision: 244407
URL: http://svnweb.freebsd.org/changeset/base/244407
Log:
POSIX requires that non-existent or null arguments be treated as if a
zero argument were supplied.
Add a regression test to catch this case as well.
PR:
On Monday, December 17, 2012 4:21:43 pm Alfred Perlstein wrote:
> On 12/17/12 11:39 AM, John Baldwin wrote:
> > On Saturday, December 15, 2012 1:04:17 am Bruce Evans wrote:
> >> On Fri, 14 Dec 2012, Alfred Perlstein wrote:
> >>
> >>> On 12/14/12 4:12 PM, Robert Watson wrote:
> On Fri, 14 Dec 2
Author: emaste
Date: Tue Dec 18 21:13:03 2012
New Revision: 244408
URL: http://svnweb.freebsd.org/changeset/base/244408
Log:
No reason to install debug data with the schg flag
Modified:
head/share/mk/bsd.lib.mk
Modified: head/share/mk/bsd.lib.mk
==
Author: eadler
Date: Tue Dec 18 21:42:45 2012
New Revision: 244409
URL: http://svnweb.freebsd.org/changeset/base/244409
Log:
Add an additional regression tests for other cases to ensure these do not get
fixed by accident.
Modified:
head/tools/regression/usr.bin/printf/regress.sh
Modified: h
Author: jimharris
Date: Tue Dec 18 21:50:48 2012
New Revision: 244410
URL: http://svnweb.freebsd.org/changeset/base/244410
Log:
Do not use taskqueue to defer completion work when using INTx. INTx now
matches MSI-X behavior.
Sponsored by: Intel
Modified:
head/sys/dev/nvme/nvme.c
head
Author: jimharris
Date: Tue Dec 18 22:10:40 2012
New Revision: 244411
URL: http://svnweb.freebsd.org/changeset/base/244411
Log:
Simplify module definition by adding nvme_modevent to DRIVER_MODULE()
definition.
Submitted by: Carl Delsey
Modified:
head/sys/dev/nvme/nvme.c
Modified: h
Author: gonzo
Date: Tue Dec 18 22:18:54 2012
New Revision: 244412
URL: http://svnweb.freebsd.org/changeset/base/244412
Log:
Add sysctls for changing GPIO pins function
Submitted by: Luiz Otavio O Souza
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c
Modified: head/sys/arm/broadco
On 12/18/12 12:37 PM, John Baldwin wrote:
On Monday, December 17, 2012 4:21:43 pm Alfred Perlstein wrote:
On 12/17/12 11:39 AM, John Baldwin wrote:
On Saturday, December 15, 2012 1:04:17 am Bruce Evans wrote:
On Fri, 14 Dec 2012, Alfred Perlstein wrote:
On 12/14/12 4:12 PM, Robert Watson wro
Author: jimharris
Date: Tue Dec 18 23:27:18 2012
New Revision: 244413
URL: http://svnweb.freebsd.org/changeset/base/244413
Log:
Map BAR 4/5, because NVMe spec says devices may place the MSI-X table
behind BAR 4/5, rather than in BAR 0/1 with the control/doorbell registers.
Sponsored by: I
on 19/12/2012 00:31 Alfred Perlstein said the following:
> Yes, that happens when they run -stable.
Does it?
Do you have a solution? [*]
[*] - which doesn't involve "it runs so slow I am switching to Y".
--
Andriy Gapon
___
svn-src-all@freebsd.org mai
On 12/18/12 2:41 PM, Andriy Gapon wrote:
on 19/12/2012 00:31 Alfred Perlstein said the following:
Yes, that happens when they run -stable.
Does it?
Do you have a solution? [*]
[*] - which doesn't involve "it runs so slow I am switching to Y".
I already suggested that we copy from KTR so tha
Author: cognet
Date: Wed Dec 19 00:24:31 2012
New Revision: 244414
URL: http://svnweb.freebsd.org/changeset/base/244414
Log:
Properly implement pmap_[get|set]_memattr
Submitted by: Ian Lepore
Modified:
head/sys/arm/arm/pmap-v6.c
head/sys/arm/arm/pmap.c
head/sys/arm/include/pmap.h
Author: markj
Date: Wed Dec 19 04:18:21 2012
New Revision: 244415
URL: http://svnweb.freebsd.org/changeset/base/244415
Log:
Add myself as a new src committer.
Approved by: emaste (co-mentor)
Modified:
head/share/misc/committers-src.dot
Modified: head/share/misc/committers-src.dot
=
Author: kib
Date: Wed Dec 19 04:24:11 2012
New Revision: 244416
URL: http://svnweb.freebsd.org/changeset/base/244416
Log:
MFC r243901:
Fixes to ensure the integrity of the callwheel tailqs.
MFC r243912 (by attilio):
Rearrange comments, use cached callout flags when callout could have
Author: alc
Date: Wed Dec 19 05:07:27 2012
New Revision: 244417
URL: http://svnweb.freebsd.org/changeset/base/244417
Log:
Eliminate some definitions that haven't been used in a decade or more.
Modified:
head/sys/mips/include/param.h
Modified: head/sys/mips/include/param.h
===
47 matches
Mail list logo