Author: eadler
Date: Sat Jun 2 03:13:27 2012
New Revision: 236433
URL: http://svn.freebsd.org/changeset/base/236433
Log:
Document the limitations of the -delete primary
PR: bin/166554
Submitted by: Richard Kettlewell
Discussed with: jilles
Approved by: bcr
MFC aft
Author: mjacob
Date: Fri Jun 1 23:29:48 2012
New Revision: 236427
URL: http://svn.freebsd.org/changeset/base/236427
Log:
Clean up and complete the incomplete deferred enable code.
Make the default role NONE if target mode is selected. This
allows ctl(8) to switch to/from target mode via kno
Author: mjacob
Date: Fri Jun 1 23:24:56 2012
New Revision: 236426
URL: http://svn.freebsd.org/changeset/base/236426
Log:
Print FC PortID as a hex number. This makes it easy to
figure out domain, etc..
Zero ATIO and INOTify allocations. It makes for much
less guesswork when looking at t
Author: jkim
Date: Fri Jun 1 21:33:33 2012
New Revision: 236424
URL: http://svn.freebsd.org/changeset/base/236424
Log:
Consistently use ACPI_SUCCESS() and ACPI_FAILURE() macros wherever possible.
Modified:
head/sys/amd64/acpica/acpi_wakeup.c
head/sys/dev/acpica/Osd/OsdSynch.c
head/sys/de
Author: obrien
Date: Fri Jun 1 21:26:28 2012
New Revision: 236422
URL: http://svn.freebsd.org/changeset/base/236422
Log:
Centralize the specification of the krb5 build tools.
Modified:
head/kerberos5/Makefile.inc
head/kerberos5/lib/libasn1/Makefile
head/kerberos5/lib/libgssapi_spnego/Mak
Author: joel (doc committer)
Date: Fri Jun 1 19:26:38 2012
New Revision: 236420
URL: http://svn.freebsd.org/changeset/base/236420
Log:
mdoc: terminate quoted string and remove unneeded paragraph macro.
Modified:
head/share/man/man4/bce.4
Modified: head/share/man/man4/bce.4
=
Author: jkim
Date: Fri Jun 1 19:19:04 2012
New Revision: 236419
URL: http://svn.freebsd.org/changeset/base/236419
Log:
Tidy up code clutter in SMP case a bit. No functional change.
Modified:
head/sys/amd64/acpica/acpi_wakeup.c
head/sys/i386/acpica/acpi_wakeup.c
Modified: head/sys/amd64/a
> > Regarding to ACPICA source code, they said nothing about this so I
> > think it's not big deal.
> >
> > Just FYI, AcpiSetFirmwareWakingVector(0) was called with interrupt
> > enabled in Linux.
>
> This function does not care about interrupt context. However, the
> first AcpiSetFirmwareWakin
Author: sbruno
Date: Fri Jun 1 19:09:17 2012
New Revision: 236418
URL: http://svn.freebsd.org/changeset/base/236418
Log:
Doh! Bump the date as I touched it!
Noted by: gjb@
MFC after:3 days
Modified:
head/share/man/man4/bce.4
Modified: head/share/man/man4/bce.4
==
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 2012-06-01 14:43:49 -0400, Mitsuru IWASAKI wrote:
> Hi, thanks for following up.
>
>> Log: Call AcpiSetFirmwareWakingVector() with interrupt disabled
>> for consistency.
>
> Are you sure about this? Original code is like this (interrupt
> ENABLED
Author: eadler
Date: Fri Jun 1 18:58:50 2012
New Revision: 236417
URL: http://svn.freebsd.org/changeset/base/236417
Log:
Revert r236380
PR: kern/166780
Requested by: many
Approved by: cperciva (implicit)
Modified:
head/sys/vm/swap_pager.c
Modified: head/sys/vm/swap_pager
Hi, thanks for following up.
> Log:
> Call AcpiSetFirmwareWakingVector() with interrupt disabled for consistency.
Are you sure about this? Original code is like this (interrupt ENABLED);
intr_restore(rf);
AcpiSetFirmwareWakingVector(0);
if (ret == 0 && mem_rang
Author: jhb
Date: Fri Jun 1 18:33:40 2012
New Revision: 236415
URL: http://svn.freebsd.org/changeset/base/236415
Log:
Add a new -e flag to pciconf(8)'s list mode to display PCI error details.
Currently this dumps the status of any error bits in the PCI status register
and PCI-express device
Author: jkim
Date: Fri Jun 1 18:18:48 2012
New Revision: 236414
URL: http://svn.freebsd.org/changeset/base/236414
Log:
Call AcpiSetFirmwareWakingVector() with interrupt disabled for consistency.
Modified:
head/sys/amd64/acpica/acpi_wakeup.c
head/sys/i386/acpica/acpi_wakeup.c
Modified: hea
Author: sbruno
Date: Fri Jun 1 18:01:51 2012
New Revision: 236412
URL: http://svn.freebsd.org/changeset/base/236412
Log:
Add notes and information for exposed tuneables in bce(4).
Add source of documentation for this driver.
Thanks to Warren Block for the suggestions for readability.
On Friday, June 01, 2012 12:39:48 pm Eitan Adler wrote:
> On 1 June 2012 07:24, John Baldwin wrote:
> > This is why I personally loathe assignment side effects in boolean
> > expressions
> > for control flow. I tend to write this sort of thing instead as:
> >
> >channel->dtr_arr[dtr_inde
Author: jkim
Date: Fri Jun 1 17:07:52 2012
New Revision: 236409
URL: http://svn.freebsd.org/changeset/base/236409
Log:
Improve style(9) in the previous commit.
Modified:
head/sys/amd64/acpica/acpi_wakeup.c
head/sys/i386/acpica/acpi_wakeup.c
head/sys/ia64/acpica/acpi_wakeup.c
Modified: h
Author: jkim
Date: Fri Jun 1 17:00:33 2012
New Revision: 236408
URL: http://svn.freebsd.org/changeset/base/236408
Log:
Execute AcpiLeaveSleepStatePrep() for S1 and reduce code duplication.
MFC after:3 days
Modified:
head/sys/dev/acpica/acpi.c
Modified: head/sys/dev/acpica/acpi.c
==
On 1 June 2012 07:24, John Baldwin wrote:
> This is why I personally loathe assignment side effects in boolean expressions
> for control flow. I tend to write this sort of thing instead as:
>
> channel->dtr_arr[dtr_index].dtr = dtrh;
> if (dtrh != NULL) {
Same here. I was told to u
Author: hselasky
Date: Fri Jun 1 16:30:54 2012
New Revision: 236407
URL: http://svn.freebsd.org/changeset/base/236407
Log:
Improve support for detaching kernel drivers on a per interface basis.
MFC after:1 week
Modified:
head/sys/dev/usb/usb_device.c
head/sys/dev/usb/usb_generic.c
On Fri, 1 Jun 2012 m...@freebsd.org wrote:
On Fri, Jun 1, 2012 at 2:14 AM, Bruce Evans wrote:
+SYSCTL_OID(_vm, OID_AUTO, swap_free,
CTLTYPE_INT|CTLFLAG_RD|CTLFLAG_MPSAFE,
+ ? ? ? ? ? ? ? NULL, 0, sysctl_vm_swap_free, "Q",
+ ? ? ? ? ? ? ? "Blocks of free swap storage.");
Bug 9 is a style bug.
On Thu, May 31, 2012 at 08:35:54PM -0600, Warner Losh wrote:
> What are your MFC plans for 9.x and 8.x?
I'd like to commit to both 8 and 9 for the next release of each.
> > .It Cm :L
> > Converts variable to lower-case letters.
> > +(deprecated)
...
> > +The use of the
> > +.Cm :L
> > +and
> > +.
On Friday, June 01, 2012 11:42:37 am John Baldwin wrote:
> Author: jhb
> Date: Fri Jun 1 15:42:37 2012
> New Revision: 236404
> URL: http://svn.freebsd.org/changeset/base/236404
>
> Log:
> Extend VERBOSE_SYSINIT to also print out the name of variables passed
> to SYSINIT routines if they can
On Fri, 1 Jun 2012, Guy Helmer wrote:
Log:
Style(9) improvements: remove unnecessary parenthesis, improve order
of local variable declarations, remove bogus casts, and resolve long
lines.
Reviewed by: bde
Thanks.
Bruce
___
svn-src-head@freebs
On Fri, 1 Jun 2012, John Baldwin wrote:
On Friday, June 01, 2012 2:23:42 am Eitan Adler wrote:
On 31 May 2012 22:13, Bruce Evans wrote:
This seems to change a style by (excessive parentheses for a normal
equality test) into logic bug (assignment of dtrh instead of compariing
with it).
inten
On Fri, Jun 1, 2012 at 2:14 AM, Bruce Evans wrote:
>>> +SYSCTL_OID(_vm, OID_AUTO, swap_free,
>>> CTLTYPE_INT|CTLFLAG_RD|CTLFLAG_MPSAFE,
>>> + NULL, 0, sysctl_vm_swap_free, "Q",
>>> + "Blocks of free swap storage.");
>
>
> Bug 9 is a style bug. I didn't even know that t
Author: jhb
Date: Fri Jun 1 15:52:41 2012
New Revision: 236406
URL: http://svn.freebsd.org/changeset/base/236406
Log:
Commit a portion of 233708 I missed earlier and don't include the
definition of igb_start() and igb_start_locked() (nor set if_start in
the ifnet) when igb(4) uses if_transm
Author: jhb
Date: Fri Jun 1 15:48:24 2012
New Revision: 236405
URL: http://svn.freebsd.org/changeset/base/236405
Log:
Remove unnecessary initializations. The BSS of boot2 is in fact
zero'd when boot2 begins execution by the _start() routine in btxcsu.S.
MFC after:1 week
Modified:
Author: jhb
Date: Fri Jun 1 15:42:37 2012
New Revision: 236404
URL: http://svn.freebsd.org/changeset/base/236404
Log:
Extend VERBOSE_SYSINIT to also print out the name of variables passed
to SYSINIT routines if they can be resolved via symbol look up in DDB.
To avoid false positives, only h
Author: iwasaki
Date: Fri Jun 1 15:26:32 2012
New Revision: 236403
URL: http://svn.freebsd.org/changeset/base/236403
Log:
Call AcpiLeaveSleepStatePrep() in interrupt disabled context
(described in ACPICA source code).
- Move intr_disable() and intr_restore() from acpi_wakeup.c to acpi.c
On 1 June 2012 05:14, Bruce Evans wrote:
>> On 1 June 2012 08:42, Eitan Adler wrote:
...
I want to ack the replies to this commit. I'll either try to fix the
bugs mentioned here, or more likely revert the commit. Note that it
may take a few days for me to get to this though.
--
Eitan Adler
S
On Friday, June 01, 2012 2:23:42 am Eitan Adler wrote:
> On 31 May 2012 22:13, Bruce Evans wrote:
> > This seems to change a style by (excessive parentheses for a normal
> > equality test) into logic bug (assignment of dtrh instead of compariing
> > with it).
>
> intentional - perhaps my commit m
Author: ghelmer
Date: Fri Jun 1 15:02:23 2012
New Revision: 236402
URL: http://svn.freebsd.org/changeset/base/236402
Log:
Style(9) improvements: remove unnecessary parenthesis, improve order
of local variable declarations, remove bogus casts, and resolve long
lines.
Reviewed by: bde
Author: bz
Date: Fri Jun 1 11:42:50 2012
New Revision: 236394
URL: http://svn.freebsd.org/changeset/base/236394
Log:
Make TCP LRO work properly with VIMAGE kernels rather than just panicing.
There's no VIMAGE context set there yet as this is before if_ethersubr.c.
MFC after:3 days
Author: mav
Date: Fri Jun 1 09:32:37 2012
New Revision: 236393
URL: http://svn.freebsd.org/changeset/base/236393
Log:
Use AC_GETDEV_CHANGED async to notify ada driver about DMA and NCQ status
change. Now that allows switching between PIO and DMA modes on the fly.
Modified:
head/sys/cam/ata
On Fri, 1 Jun 2012, Sergey Kandaurov wrote:
On 1 June 2012 08:42, Eitan Adler wrote:
...
Log:
?Add sysctl to query amount of swap space free
?PR: ? ? ? ? ? kern/166780
?Submitted by: Radim Kolar
?Approved by: ?cperciva
?MFC after: ? ?1 week
Well, we already have more powerful vm.swap_info,
Author: jase (ports committer)
Date: Fri Jun 1 08:44:17 2012
New Revision: 236392
URL: http://svn.freebsd.org/changeset/base/236392
Log:
Add myself as a new committer.
Approved by: flo, culot (mentors)
Modified:
head/usr.bin/calendar/calendars/calendar.freebsd
Modified: head/usr.bin/c
On Fri, Jun 01, 2012 at 04:42:52AM +, Eitan Adler wrote:
> Author: eadler
> Date: Fri Jun 1 04:42:52 2012
> New Revision: 236380
> URL: http://svn.freebsd.org/changeset/base/236380
>
> Log:
> Add sysctl to query amount of swap space free
>
> PR: kern/166780
> Submitted by:
Author: tuexen
Date: Fri Jun 1 08:26:50 2012
New Revision: 236391
URL: http://svn.freebsd.org/changeset/base/236391
Log:
Small cleanups. No functional change.
MFC after: 3 days
Modified:
head/sys/netinet/sctp_asconf.c
head/sys/netinet/sctputil.h
Modified: head/sys/netinet/sctp_asconf
On 01/06/2012, at 15:38, Sergey Kandaurov wrote:
> Well, we already have more powerful vm.swap_info, so
> I see no reason to add yet another one to do the same thing
> (but now with a human interface).
> Probably sysctl(8) should be enhanced to parse it instead.
There are already sysctls which ha
Author: dim
Date: Fri Jun 1 06:56:35 2012
New Revision: 236388
URL: http://svn.freebsd.org/changeset/base/236388
Log:
Make devd build with libc++.
MFC after:3 days
Modified:
head/sbin/devd/devd.cc
Modified: head/sbin/devd/devd.cc
Author: dim
Date: Fri Jun 1 06:55:01 2012
New Revision: 236387
URL: http://svn.freebsd.org/changeset/base/236387
Log:
Fix dangling else in libc++'s __bit_reference header. This has also
been sent upstream.
MFC after:3 days
Modified:
head/contrib/libc++/include/__bit_reference
Mo
Author: dim
Date: Fri Jun 1 06:50:37 2012
New Revision: 236386
URL: http://svn.freebsd.org/changeset/base/236386
Log:
Pull in r155978 from upstream llvm trunk:
Fix unintentional use of operator bool.
This enables llvm's bugpoint tool to build with libc++.
MFC after:3 days
Author: adrian
Date: Fri Jun 1 06:20:39 2012
New Revision: 236381
URL: http://svn.freebsd.org/changeset/base/236381
Log:
Add a missing #include, required for IEEE80211_DEBUG.
Modified:
head/sys/dev/wpi/if_wpi.c
Modified: head/sys/dev/wpi/if_wpi.c
On 31 May 2012 22:13, Bruce Evans wrote:
> This seems to change a style by (excessive parentheses for a normal
> equality test) into logic bug (assignment of dtrh instead of compariing
> with it).
intentional - perhaps my commit message was poorly worded.
The comment above says
283 /*
28
On 1 June 2012 08:42, Eitan Adler wrote:
> Author: eadler
> Date: Fri Jun 1 04:42:52 2012
> New Revision: 236380
> URL: http://svn.freebsd.org/changeset/base/236380
>
> Log:
> Add sysctl to query amount of swap space free
>
> PR: kern/166780
> Submitted by: Radim Kolar
> Approved b
46 matches
Mail list logo