On Wed, 17 Jul 2013, Kevin Lo wrote:
Log:
Use PRId64 instead of %gd to print an int64_t.
This is a different printf format error, and a style bug.
Printf format errors:
commit log: %gd doesn't exist. You mean %qd
old: file_size has type off_t, but was printed using %qd. off_t is only
on 17/07/2013 07:10 Andrey Chernov said the following:
> On 16.07.2013 11:26, Andriy Gapon wrote:
>> Modified: head/lib/libc/stdlib/getenv.c
>> ==
>> --- head/lib/libc/stdlib/getenv.cTue Jul 16 06:50:22 2013
>>
on 17/07/2013 08:27 Andrey Chernov said the following:
> On 17.07.2013 8:48, Andrey Chernov wrote:
>> On 17.07.2013 8:10, Andrey Chernov wrote:
>>> On 16.07.2013 11:26, Andriy Gapon wrote:
Modified: head/lib/libc/stdlib/getenv.c
On 17.07.2013 12:35, Andriy Gapon wrote:
> - env = stpcpy(envVars[envNdx].name, name);
> + env = stpncpy(envVars[envNdx].name, name, nameLen);
> if ((envVars[envNdx].name)[nameLen] != '=')
> env = stpcpy(env, "=");
>> Microoptimized:
>>
>>
on 17/07/2013 11:41 Andrey Chernov said the following:
> On 17.07.2013 12:35, Andriy Gapon wrote:
>> -env = stpcpy(envVars[envNdx].name, name);
>> +env = stpncpy(envVars[envNdx].name, name, nameLen);
>> if ((envVars[envNdx].name)[nameLen]
Author: avg
Date: Wed Jul 17 08:45:27 2013
New Revision: 253413
URL: http://svnweb.freebsd.org/changeset/base/253413
Log:
[fix to r253380] __setenv: be explicit about placing '=' after name
This should a regression introduced in r253380 if malloc'ed memory
happens to have '=' at the right
Author: bapt
Date: Wed Jul 17 10:12:31 2013
New Revision: 253414
URL: http://svnweb.freebsd.org/changeset/base/253414
Log:
For all european contries using the euro currency, add an UTF-8 definition
with the proper Euro symbol
MFC after:1 week
Added:
head/share/monetdef/ca_ES.UTF-8.s
Author: kib
Date: Wed Jul 17 10:56:21 2013
New Revision: 253417
URL: http://svnweb.freebsd.org/changeset/base/253417
Log:
Clear the vnode knotes before destroying vpollinfo.
Reported and tested by: Patrick Lamaiziere
Sponsored by: The FreeBSD Foundation
MFC after:2 weeks
Mod
Author: bapt
Date: Wed Jul 17 11:51:24 2013
New Revision: 253419
URL: http://svnweb.freebsd.org/changeset/base/253419
Log:
Change Eu to the proper UTF-8 symbol this was missed in r253414
Modified:
head/share/monetdef/el_GR.UTF-8.src
Modified: head/share/monetdef/el_GR.UTF-8.src
=
Author: glebius
Date: Wed Jul 17 12:28:48 2013
New Revision: 253420
URL: http://svnweb.freebsd.org/changeset/base/253420
Log:
Improve example, so that it doesn't dump core when example module
isn't loaded.
Modified:
head/share/examples/kld/syscall/test/call.c
Modified: head/share/examples/
Author: glebius
Date: Wed Jul 17 13:13:44 2013
New Revision: 253421
URL: http://svnweb.freebsd.org/changeset/base/253421
Log:
Fix typo.
Submitted by: ae
Modified:
head/share/examples/kld/syscall/test/call.c
Modified: head/share/examples/kld/syscall/test/call.c
==
Author: jhb
Date: Wed Jul 17 13:41:54 2013
New Revision: 253423
URL: http://svnweb.freebsd.org/changeset/base/253423
Log:
Remove check forbidding requests that would result in one port being set
to Ethernet and the subsequent port being set to IB.
Submitted by: Shakar Klein @ Mellanox
T
Author: bapt
Date: Wed Jul 17 14:00:51 2013
New Revision: 253425
URL: http://svnweb.freebsd.org/changeset/base/253425
Log:
Do not overwrite the new UTF-8 files with the old ISO one
Modified:
head/share/monetdef/Makefile
Modified: head/share/monetdef/Makefile
=
Author: hrs
Date: Wed Jul 17 14:05:20 2013
New Revision: 253427
URL: http://svnweb.freebsd.org/changeset/base/253427
Log:
- Add support of MK_INET_SUPPORT=no.
- Fix a bug in sodump() which prevented struct sockaddr_in6 from displaying.
- Fix a bug in in fiboptlist_csv() which could cause fre
Author: hrs
Date: Wed Jul 17 13:47:13 2013
New Revision: 253424
URL: http://svnweb.freebsd.org/changeset/base/253424
Log:
Simplify keywords.h generation.
Modified:
head/sbin/route/Makefile
Modified: head/sbin/route/Makefile
Author: hrs
Date: Wed Jul 17 14:15:00 2013
New Revision: 253429
URL: http://svnweb.freebsd.org/changeset/base/253429
Log:
Use NET_RT_DUMP.0.FIB leaf node instead of setting td_proc->p_fibnum.
Modified:
head/sbin/route/route.c
Modified: head/sbin/route/route.c
Author: rodrigc
Date: Wed Jul 17 19:32:07 2013
New Revision: 253433
URL: http://svnweb.freebsd.org/changeset/base/253433
Log:
In this GRN, Marcel Moolenaar overhauled the logic for mounting
the root file system on bootup:
|---
Author: jimharris
Date: Wed Jul 17 19:41:16 2013
New Revision: 253434
URL: http://svnweb.freebsd.org/changeset/base/253434
Log:
Add bus_dmamap_load_bio and bus_dmamap_load_ccb to bus_dma(9).
Sponsored by: Intel
Reviewed by: kib
MFC after:3 days
Modified:
head/share/man/man9/bus_
Author: jimharris
Date: Wed Jul 17 23:14:41 2013
New Revision: 253436
URL: http://svnweb.freebsd.org/changeset/base/253436
Log:
Always initialize fd to 0 in open_dev().
Sponsored by: Intel
Reviewed by: carl
MFC after:3 days
Modified:
head/sbin/nvmecontrol/nvmecontrol.c
Modified
Author: jimharris
Date: Wed Jul 17 23:23:38 2013
New Revision: 253437
URL: http://svnweb.freebsd.org/changeset/base/253437
Log:
Define constants for the lengths of the serial number, model number
and firmware revision in the controller's identify structure.
Also modify consumers of these
Author: jimharris
Date: Wed Jul 17 23:26:56 2013
New Revision: 253438
URL: http://svnweb.freebsd.org/changeset/base/253438
Log:
Use pause() instead of DELAY() when polling for completion of admin
commands during controller initialization.
DELAY() does not work here during config_intrhook
Author: jkim
Date: Wed Jul 17 23:29:56 2013
New Revision: 253439
URL: http://svnweb.freebsd.org/changeset/base/253439
Log:
Reload font when syscons(4) is resuming without switching mode.
Reported by: adrian (more than a year ago)
Prodded by: adrian (less than a month ago)
Modified:
Author: grehan
Date: Wed Jul 17 23:37:33 2013
New Revision: 253440
URL: http://svnweb.freebsd.org/changeset/base/253440
Log:
Major rework of the virtio code. Split out common parts, and modify
the net/block devices accordingly.
Submitted by: Chris Torek torek at torek dot net
Reviewed
Author: delphij
Date: Thu Jul 18 00:22:42 2013
New Revision: 253441
URL: http://svnweb.freebsd.org/changeset/base/253441
Log:
Manually merge part of vendor import r238583 from Illumos.
Illumos changeset: 13680:2bd022a765e2
Illumos ZFS issue:
2671 zpool import should not fail if v
This is an interesting change, could this not cause serious issues when
we try to read / write to a disk with an incompatible block size?
Regards
Steve
- Original Message -
From: "Xin LI"
To: ; ;
Sent: Thursday, July 18, 2013 1:22 AM
Subject: svn commit: r253441 - in head: cddl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
On 07/17/13 17:34, Steven Hartland wrote:
> This is an interesting change, could this not cause serious issues
> when we try to read / write to a disk with an incompatible block
> size?
No, it's safe to use larger ashift to access pool formatted wit
On Wed, Jul 17, 2013 at 02:05:20PM +, Hiroki Sato wrote:
> Author: hrs
> Date: Wed Jul 17 14:05:20 2013
> New Revision: 253427
> URL: http://svnweb.freebsd.org/changeset/base/253427
>
> Log:
> - Add support of MK_INET_SUPPORT=no.
> - Fix a bug in sodump() which prevented struct sockaddr_in
On Jul 17, 2013, at 7:00 PM, Glen Barber wrote:
> On Wed, Jul 17, 2013 at 02:05:20PM +, Hiroki Sato wrote:
>> Author: hrs
>> Date: Wed Jul 17 14:05:20 2013
>> New Revision: 253427
>> URL: http://svnweb.freebsd.org/changeset/base/253427
>>
>> Log:
>> - Add support of MK_INET_SUPPORT=no.
>>
Author: kevlo
Date: Thu Jul 18 01:40:31 2013
New Revision: 253442
URL: http://svnweb.freebsd.org/changeset/base/253442
Log:
Replace PRId64 with "jd" in a printf call. Cast the corresponding value to
intmax_t, because the original type is off_t.
Reported by: bde
Modified:
head/tools/re
Bruce Evans wrote:
On Wed, 17 Jul 2013, Kevin Lo wrote:
Log:
Use PRId64 instead of %gd to print an int64_t.
This is a different printf format error, and a style bug.
Printf format errors:
commit log: %gd doesn't exist. You mean %qd
old: file_size has type off_t, but was printed using %qd.
Author: hrs
Date: Thu Jul 18 02:34:25 2013
New Revision: 253443
URL: http://svnweb.freebsd.org/changeset/base/253443
Log:
Fix a gcc warning.
Pointy hat to:hrs
Modified:
head/sbin/route/route.c
Modified: head/sbin/route/route.c
Scott Long wrote
in <2ae597f6-02a5-405f-b1d8-34054a0da...@yahoo.com>:
sc>
sc> On Jul 17, 2013, at 7:00 PM, Glen Barber wrote:
sc>
sc> > On Wed, Jul 17, 2013 at 02:05:20PM +, Hiroki Sato wrote:
sc> >> Author: hrs
sc> >> Date: Wed Jul 17 14:05:20 2013
sc> >> New Revision: 253427
sc> >> URL:
Author: hrs
Date: Thu Jul 18 02:58:24 2013
New Revision: 253444
URL: http://svnweb.freebsd.org/changeset/base/253444
Log:
- Fix a bug in ipv6_prefix_IF. It did not work with the 64-bit prefix
notation like 2001:db8:1:1.
- Use eui64 flag in ifconfig(8) instead of network6_getladdr()[*]
Author: joel (doc committer)
Date: Thu Jul 18 05:46:33 2013
New Revision: 253445
URL: http://svnweb.freebsd.org/changeset/base/253445
Log:
Minor mdoc fixes.
Modified:
head/sbin/mount/mount.conf.8
Modified: head/sbin/mount/mount.conf.8
=
On Thu, 18 Jul 2013, Kevin Lo wrote:
Log:
Replace PRId64 with "jd" in a printf call. Cast the corresponding value to
intmax_t, because the original type is off_t.
Reported by: bde
Thanks, but it still includes inttypes.h for the definition of PRId64.
Use of inttypes.h instead of stdint.
Author: kevlo
Date: Thu Jul 18 06:32:19 2013
New Revision: 253447
URL: http://svnweb.freebsd.org/changeset/base/253447
Log:
Include stdint.h when use intmax_t.
Reported by: bde
Modified:
head/tools/regression/aio/aiop/aiop.c
Modified: head/tools/regression/aio/aiop/aiop.c
=
36 matches
Mail list logo