on 04/02/2013 02:37 Mark Johnston said the following:
> On Sat, Feb 02, 2013 at 11:54:00AM +, Andriy Gapon wrote:
>> Author: avg
>> Date: Sat Feb 2 11:54:00 2013
>> New Revision: 246245
>> URL: http://svnweb.freebsd.org/changeset/base/246245
>>
>> Log:
>> ng_ether: track interface renaming
>
Author: andrew
Date: Mon Feb 4 06:59:33 2013
New Revision: 246312
URL: http://svnweb.freebsd.org/changeset/base/246312
Log:
Extend GDB to check the value in the .note.tag section along with the
.note.ABI-tag section.
This helps on ARM EABI where the OS/ABI field is zero. It would be bett
On Sun, 3 Feb 2013, Marius Strobl wrote:
Log:
Further improve r242655 and supply VM_{MIN,MAX}_KERNEL_ADDRESS as constant
values to SYSCTL_ULONG(9) where possible.
Submitted by: bde
Modified: head/sys/kern/kern_malloc.c
=
On Sat, Feb 02, 2013 at 11:54:00AM +, Andriy Gapon wrote:
> Author: avg
> Date: Sat Feb 2 11:54:00 2013
> New Revision: 246245
> URL: http://svnweb.freebsd.org/changeset/base/246245
>
> Log:
> ng_ether: track interface renaming
>
> Also sanitize interface names that can potentially con
I'm finding it rather annoying that dtc isn't installed
on systems that use device trees.
Would there be any negative fallout from installing
/usr/bin/dtc as part of the regular world?
Tim
P.S. In particular, I'm moving away from compiled-in
device trees (in favor of having the loader read
it fr
Author: eadler
Date: Mon Feb 4 00:34:35 2013
New Revision: 246311
URL: http://svnweb.freebsd.org/changeset/base/246311
Log:
MFC r243930:
Constify where possible
Approved by: cperciva (mentor, implicit)
Modified:
stable/7/sbin/devd/devd.cc
stable/7/sbin/devd/devd.hh
Directory
Author: eadler
Date: Mon Feb 4 00:34:34 2013
New Revision: 246310
URL: http://svnweb.freebsd.org/changeset/base/246310
Log:
MFC r243930:
Constify where possible
Approved by: cperciva (mentor, implicit)
Modified:
stable/8/sbin/devd/devd.cc
stable/8/sbin/devd/devd.hh
Directory
Author: eadler
Date: Mon Feb 4 00:34:33 2013
New Revision: 246309
URL: http://svnweb.freebsd.org/changeset/base/246309
Log:
MFC r243930:
Constify where possible
Approved by: cperciva (mentor, implicit)
Modified:
stable/9/sbin/devd/devd.cc
stable/9/sbin/devd/devd.hh
Directory
Author: marius
Date: Sun Feb 3 21:43:55 2013
New Revision: 246301
URL: http://svnweb.freebsd.org/changeset/base/246301
Log:
Further improve r242655 and supply VM_{MIN,MAX}_KERNEL_ADDRESS as constant
values to SYSCTL_ULONG(9) where possible.
Submitted by: bde
Modified:
head/sys/kern/ke
Author: marius
Date: Sun Feb 3 21:30:29 2013
New Revision: 246300
URL: http://svnweb.freebsd.org/changeset/base/246300
Log:
- Make pci_ns8250_ids[] const.
- Use DEVMETHOD_END.
- Use NULL instead of 0 for pointers.
MFC after:1 week
Modified:
head/sys/dev/uart/uart_bus_pci.c
Modi
Author: pfg
Date: Sun Feb 3 21:30:02 2013
New Revision: 246299
URL: http://svnweb.freebsd.org/changeset/base/246299
Log:
UFS: Remove dead assignment.
Submitted by: Christoph Mallon
MFC after:3 days
Modified:
head/sys/ufs/ufs/ufs_lookup.c
Modified: head/sys/ufs/ufs/ufs_lookup.c
==
Author: pfg
Date: Sun Feb 3 21:16:33 2013
New Revision: 246298
URL: http://svnweb.freebsd.org/changeset/base/246298
Log:
crunchide(1): Put e_shnum into a local variable.
This simplifies the code a bit.
Submitted by: Cristoph Mallon
MFC after:2 weeks
Modified:
head/usr.sbin/cr
Author: dim
Date: Sun Feb 3 20:40:41 2013
New Revision: 246297
URL: http://svnweb.freebsd.org/changeset/base/246297
Log:
Add several missing symbols to libcxxrt's symbol version map, and remove
a few duplicates. This should fix building world with -stdlib=libc++
after r246028.
Submitt
Author: pfg
Date: Sun Feb 3 20:35:37 2013
New Revision: 246296
URL: http://svnweb.freebsd.org/changeset/base/246296
Log:
crunchide(1): support non-custom elf object layout
The crunchide utility presumes the last 3 chunks of an ELF object
layout are section headers, symbol table, and then
On Sun, 3 Feb 2013, Andriy Gapon wrote:
on 03/02/2013 19:16 Kirk McKusick said the following:
Author: mckusick
Date: Sun Feb 3 17:16:32 2013
New Revision: 246289
URL: http://svnweb.freebsd.org/changeset/base/246289
Log:
For UFS2 i_blocks is unsigned. The current "sanity" check that it
has
on 03/02/2013 21:23 Andriy Gapon said the following:
> on 03/02/2013 20:42 Andriy Gapon said the following:
>> -vm_page_busy(pp);
>> -vm_page_undirty(pp);
>
> ZFS lookup_page previously had two interesting bugs that almost canceled each
> other.
>
> The fi
on 03/02/2013 20:42 Andriy Gapon said the following:
> - vm_page_busy(pp);
> - vm_page_undirty(pp);
ZFS lookup_page previously had two interesting bugs that almost canceled each
other.
The first bug was that vm_page_undirty was called even if we read from
Author: avg
Date: Sun Feb 3 18:42:20 2013
New Revision: 246293
URL: http://svnweb.freebsd.org/changeset/base/246293
Log:
zfs: fix, improve and re-organize page_lookup and page_unlock
Now they are split into two pairs: page_hold/page_unhold for mappedread
and page_busy/page_unbusy for upd
Author: dchagin
Date: Sun Feb 3 18:37:08 2013
New Revision: 246292
URL: http://svnweb.freebsd.org/changeset/base/246292
Log:
MFC r245908:
Arithmetic on pointers takes into account the size of the type.
Properly cast the pointer to avoid incorrect pointer scaling.
Modified:
stable/9/sy
Author: dchagin
Date: Sun Feb 3 18:27:57 2013
New Revision: 246291
URL: http://svnweb.freebsd.org/changeset/base/246291
Log:
MFC r240387 (by kevlo@):
Remove redundant check.
Modified:
stable/9/sys/compat/linux/linux_file.c
Directory Properties:
stable/9/sys/ (props changed)
Modified:
Author: dchagin
Date: Sun Feb 3 18:14:37 2013
New Revision: 246290
URL: http://svnweb.freebsd.org/changeset/base/246290
Log:
MFC r235063 (by netchild@):
- >500 static DTrace probes for the linuxulator
- DTrace scripts to check for errors, performance, ...
they serve mostly as examples
on 03/02/2013 19:16 Kirk McKusick said the following:
> Author: mckusick
> Date: Sun Feb 3 17:16:32 2013
> New Revision: 246289
> URL: http://svnweb.freebsd.org/changeset/base/246289
>
> Log:
> For UFS2 i_blocks is unsigned. The current "sanity" check that it
> has gone below zero after the b
Author: mckusick
Date: Sun Feb 3 17:16:32 2013
New Revision: 246289
URL: http://svnweb.freebsd.org/changeset/base/246289
Log:
For UFS2 i_blocks is unsigned. The current "sanity" check that it
has gone below zero after the blocks in its inode are freed is a
no-op which the compiler fails to
Author: jilles
Date: Sun Feb 3 15:54:57 2013
New Revision: 246288
URL: http://svnweb.freebsd.org/changeset/base/246288
Log:
sh: Expand here documents in the current process.
Expand here documents at the same point other redirections are expanded but
use a non-fork subshell environment (l
Author: kib
Date: Sun Feb 3 14:24:52 2013
New Revision: 246285
URL: http://svnweb.freebsd.org/changeset/base/246285
Log:
MFC r245977:
Be conservative and do not try to consume more bytes than was
requested from the server for the read operation.
Modified:
stable/9/sys/fs/nfsclient/nfs_cl
Author: trasz
Date: Sun Feb 3 12:17:49 2013
New Revision: 246284
URL: http://svnweb.freebsd.org/changeset/base/246284
Log:
MFC r242379:
Fix problem with geom_label(4) not recognizing UFS labels on filesystems
extended using growfs(8). The problem here is that geom_label checks if
the
Author: hrs
Date: Sun Feb 3 10:26:24 2013
New Revision: 246283
URL: http://svnweb.freebsd.org/changeset/base/246283
Log:
- Add CHECKSUM.* support in Makefile[1].
- Use ln -fs to create a symlink.
- Remove pkgadd for docports.
- Use WITHOUT_JADETEX=yes instead of WITH_JADETEX=no.
- Add {
on 02/02/2013 17:11 Alexey Dokuchaev said the following:
> On Sat, Feb 02, 2013 at 12:51:22PM +, Alexey Dokuchaev wrote:
>> On Sat, Feb 02, 2013 at 12:44:20PM +, Andriy Gapon wrote:
>>> New Revision: 246251
>>> URL: http://svnweb.freebsd.org/changeset/base/246251
>>>
>>> Log:
>>> acpi: cl
On Sun, Feb 03, 2013 at 10:18:44AM +0100, Alexander Leidinger wrote:
> On Sun, 3 Feb 2013 10:52:50 +0400
> Chagin Dmitry wrote:
>
> > On Sat, May 05, 2012 at 07:42:39PM +, Alexander Leidinger wrote:
> > > Author: netchild
> > > Date: Sat May 5 19:42:38 2012
> > > New Revision: 235063
> > > U
Author: avg
Date: Sun Feb 3 09:57:39 2013
New Revision: 246282
URL: http://svnweb.freebsd.org/changeset/base/246282
Log:
allow for large KTR_ENTRIES values by allocating ktr_buf using malloc(9)
Only during very early boot, before malloc(9) is functional (SI_SUB_KMEM),
the static ktr_buf_
On Sun, 3 Feb 2013 10:52:50 +0400
Chagin Dmitry wrote:
> On Sat, May 05, 2012 at 07:42:39PM +, Alexander Leidinger wrote:
> > Author: netchild
> > Date: Sat May 5 19:42:38 2012
> > New Revision: 235063
> > URL: http://svn.freebsd.org/changeset/base/235063
> >
> > Log:
> > - >500 static DT
31 matches
Mail list logo