Author: das
Date: Sun Oct 16 05:37:56 2011
New Revision: 226415
URL: http://svn.freebsd.org/changeset/base/226415
Log:
Use #include "fenv.h" instead of #include . This makes it
more convenient to compile the math library by itself.
Requested by: bde
Modified:
head/lib/msun/amd64/fenv.
Author: das
Date: Sun Oct 16 05:37:20 2011
New Revision: 226414
URL: http://svn.freebsd.org/changeset/base/226414
Log:
Fix some non-standard variable declarations.
Modified:
head/lib/msun/bsdsrc/b_exp.c
Modified: head/lib/msun/bsdsrc/b_exp.c
==
Author: das
Date: Sun Oct 16 05:37:01 2011
New Revision: 226413
URL: http://svn.freebsd.org/changeset/base/226413
Log:
Optimize the case of pure imaginary arguments. Calls like this are
common, e.g., in DFT implementations.
Discussed with: bde, kargl
Modified:
head/lib/msun/src/
Author: das
Date: Sun Oct 16 05:36:39 2011
New Revision: 226412
URL: http://svn.freebsd.org/changeset/base/226412
Log:
Move the macros GET_LDBL_EXPSIGN() and SET_LDBL_EXPSIGN() into
math_private.h, so they can be used elsewhere in the math library.
Modified:
head/lib/msun/src/e_hypotl.c
h
Author: das
Date: Sun Oct 16 05:36:23 2011
New Revision: 226411
URL: http://svn.freebsd.org/changeset/base/226411
Log:
Remove an unused variable.
Modified:
head/lib/msun/src/e_log10f.c
Modified: head/lib/msun/src/e_log10f.c
Thanks!
I'm going to eventually fix the ath driver to always call
bus_space_barrier() when doing stream bus calls.
It's likely worthwhile doing a check to see which other drivers use
the stream calls?
Adrian
___
svn-src-all@freebsd.org mailing list
ht
Hi!
Would you consider leaving these in but just commenting them out?
That way if a user hits a deadlock or memory corruption issue, we can
just say "uncomment the section marked _debugging_ in your config
file."
Thanks,
Adrian
___
svn-src-all@freeb
Author: nwhitehorn
Date: Sat Oct 15 23:15:55 2011
New Revision: 226410
URL: http://svn.freebsd.org/changeset/base/226410
Log:
Enforce a memory barrier in stream operations, as is done on other
bus_space calls. This makes ath(4) work correctly on PowerPC.
Submitted by: adrian
Tested by:
Author: dim
Date: Sat Oct 15 23:13:24 2011
New Revision: 226409
URL: http://svn.freebsd.org/changeset/base/226409
Log:
MFC r226311:
Add link from clang to clang-cpp, so you can use CPP=clang-cpp in
Makefiles. Also add a manpage symlink for it.
Approved by: re (kib)
Modified:
sta
Author: dim
Date: Sat Oct 15 23:09:21 2011
New Revision: 226408
URL: http://svn.freebsd.org/changeset/base/226408
Log:
MFC r226310:
Add manpage symlink for clang++(1).
PR: docs/149051
Approved by: re (kib)
Modified:
stable/9/usr.bin/clang/clang/Makefile
Directory Proper
Author: rwatson
Date: Sat Oct 15 22:27:59 2011
New Revision: 226407
URL: http://svn.freebsd.org/changeset/base/226407
Log:
Merge r226301 from head to stable/9:
Correct a bug in export of capability-related information from the sysctls
supporting procstat -f: properly provide capabilit
Author: brueffer
Date: Sat Oct 15 22:27:35 2011
New Revision: 226406
URL: http://svn.freebsd.org/changeset/base/226406
Log:
Properly free resources in case of an error.
CID: 4222
Found with: Coverity Prevent(tm)
MFC after:1 week
Modified:
head/sys/dev/siba/siba_bwn.c
Author: kensmith
Date: Sat Oct 15 21:23:04 2011
New Revision: 226405
URL: http://svn.freebsd.org/changeset/base/226405
Log:
Remove extra debuggin gsupport that is turned on for head but turned off
for stable branches:
- shift to MALLOC_PRODUCTION
- turn off automatic crash d
On Oct 15, 2011, at 9:41 PM, Gleb Smirnoff wrote:
> Author: glebius
> Date: Sat Oct 15 18:41:25 2011
> New Revision: 226402
> URL: http://svn.freebsd.org/changeset/base/226402
>
> Log:
> Add support for IPv4 /31 prefixes, as described in RFC3021.
>
> To run a /31 network, participating hosts
Author: eadler (ports committer)
Date: Sat Oct 15 21:06:08 2011
New Revision: 226404
URL: http://svn.freebsd.org/changeset/base/226404
Log:
- add support for I-O DATA RSA-PCI2/R
PR: kern/142999
Submitted by: Takefu Kenji
Approved by: jhb
Approved by: sahil (mentor)
MFC
On Oct 15, 2011, at 5:39 AM, Kostik Belousov wrote:
>>
>>> I want to commit the following refinement:
>>
>> The patch is good.
> Thanks, committed.
Thanks!
--
Marcel Moolenaar
mar...@xcllnt.net
___
svn-src-all@freebsd.org mailing list
http://lists
Author: trociny
Date: Sat Oct 15 19:08:22 2011
New Revision: 226403
URL: http://svn.freebsd.org/changeset/base/226403
Log:
In r225809 the intention was to send VEOF only once if STDIN was not a
terminal. Unfortunately the fix was incorrect and for flushtime > 0 it
keept sending VEOF.
Se
Author: glebius
Date: Sat Oct 15 18:41:25 2011
New Revision: 226402
URL: http://svn.freebsd.org/changeset/base/226402
Log:
Add support for IPv4 /31 prefixes, as described in RFC3021.
To run a /31 network, participating hosts MUST drop support
for directed broadcasts, and treat the first a
Author: glebius
Date: Sat Oct 15 16:28:06 2011
New Revision: 226401
URL: http://svn.freebsd.org/changeset/base/226401
Log:
Remove last remnants of classful addressing:
- Remove ia_net, ia_netmask, ia_netbroadcast from struct in_ifaddr.
- Remove net.inet.ip.subnetsarelocal, I bet no one ne
Author: brueffer
Date: Sat Oct 15 15:57:55 2011
New Revision: 226398
URL: http://svn.freebsd.org/changeset/base/226398
Log:
Properly free resources in an error case.
CID: 4203
Found with: Coverity Prevent(tm)
MFC after:1 week
Modified:
head/sys/dev/iicbus/iic.c
Modifi
Author: ed
Date: Sat Oct 15 13:20:36 2011
New Revision: 226396
URL: http://svn.freebsd.org/changeset/base/226396
Log:
Fix whitespace inconsistencies in systat(1).
According to md5(1), the resulting binary is the same.
Modified:
head/usr.bin/systat/cmds.c
head/usr.bin/systat/cmdtab.c
Author: brueffer
Date: Sat Oct 15 13:12:48 2011
New Revision: 226395
URL: http://svn.freebsd.org/changeset/base/226395
Log:
MFC: r226149
Fix an infinite loop in siba_bwn_suspend().
Modified:
stable/8/sys/dev/siba/siba_bwn.c
Directory Properties:
stable/8/sys/ (props changed)
stable
Author: brueffer
Date: Sat Oct 15 13:08:54 2011
New Revision: 226394
URL: http://svn.freebsd.org/changeset/base/226394
Log:
MFC: r226146
Remove dead code, "error" doesn't change between this check and the
previous one.
Modified:
stable/8/sys/dev/bwn/if_bwn.c
Directory Properties:
sta
Author: brueffer
Date: Sat Oct 15 13:05:31 2011
New Revision: 226393
URL: http://svn.freebsd.org/changeset/base/226393
Log:
MFC: r226117
Add missing va_end() in an error case to clean up after va_start()
(already done in the non-error case).
Modified:
stable/7/sys/netipsec/key.c
Direct
Author: brueffer
Date: Sat Oct 15 13:03:25 2011
New Revision: 226392
URL: http://svn.freebsd.org/changeset/base/226392
Log:
MFC: r226117
Add missing va_end() in an error case to clean up after va_start()
(already done in the non-error case).
Modified:
stable/8/sys/netipsec/key.c
Direct
Author: brueffer
Date: Sat Oct 15 12:59:30 2011
New Revision: 226391
URL: http://svn.freebsd.org/changeset/base/226391
Log:
MFC: r226116
Add missing va_end() to clean up after va_start().
Modified:
stable/7/sys/dev/ppbus/ppb_msq.c
Directory Properties:
stable/7/sys/ (props changed)
Author: brueffer
Date: Sat Oct 15 12:53:16 2011
New Revision: 226390
URL: http://svn.freebsd.org/changeset/base/226390
Log:
MFC: r226116
Add missing va_end() to clean up after va_start().
Modified:
stable/8/sys/dev/ppbus/ppb_msq.c
Directory Properties:
stable/8/sys/ (props changed)
On Fri, Oct 14, 2011 at 02:35:15PM -0700, Marcel Moolenaar wrote:
>
> On Oct 14, 2011, at 11:24 AM, Kostik Belousov wrote:
> >>>
> > After more thought about the issue, I do not agree with you.
> > Elf specification says about the PF_R flag that only read permission
> > for the memory image of th
Author: brueffer
Date: Sat Oct 15 12:35:58 2011
New Revision: 226389
URL: http://svn.freebsd.org/changeset/base/226389
Log:
MFC: r226149
Fix an infinite loop in siba_bwn_suspend().
Approved by: re (kib)
Modified:
stable/9/sys/dev/siba/siba_bwn.c
Directory Properties:
stable/9/sys
Author: kib
Date: Sat Oct 15 12:35:18 2011
New Revision: 226388
URL: http://svn.freebsd.org/changeset/base/226388
Log:
Control the execution permission of the readable segments for
i386 binaries on the amd64 and ia64 with the sysctl, instead of
unconditionally enabling it.
Reviewed by:
Author: brueffer
Date: Sat Oct 15 12:33:24 2011
New Revision: 226387
URL: http://svn.freebsd.org/changeset/base/226387
Log:
MFC: r226146
Remove dead code, "error" doesn't change between this check and the
previous one.
Approved by: re (kib)
Modified:
stable/9/sys/dev/bwn/if_bwn.c
Author: brueffer
Date: Sat Oct 15 12:10:34 2011
New Revision: 226386
URL: http://svn.freebsd.org/changeset/base/226386
Log:
MFC: r226117
Add missing va_end() in an error case to clean up after va_start()
(already done in the non-error case).
Approved by: re (kib)
Modified:
stable
Author: brueffer
Date: Sat Oct 15 12:08:21 2011
New Revision: 226385
URL: http://svn.freebsd.org/changeset/base/226385
Log:
MFC: r226116
Add missing va_end() to clean up after va_start().
Approved by: re (kib)
Modified:
stable/9/sys/dev/ppbus/ppb_msq.c
Directory Properties:
stabl
Author: brueffer
Date: Sat Oct 15 12:05:42 2011
New Revision: 226384
URL: http://svn.freebsd.org/changeset/base/226384
Log:
MFC: r226143
Remove two dublicated assignments.
Approved by: re (kib)
Modified:
stable/9/sys/security/mac_mls/mac_mls.c
Directory Properties:
stable/9/sys/
Author: kib
Date: Sat Oct 15 12:05:31 2011
New Revision: 226383
URL: http://svn.freebsd.org/changeset/base/226383
Log:
MFC r226156:
Handle the R_386_TLS_TPOFF32 relocation.
Modified:
stable/8/libexec/rtld-elf/i386/reloc.c
Directory Properties:
stable/8/libexec/rtld-elf/ (props changed)
Author: kib
Date: Sat Oct 15 12:02:55 2011
New Revision: 226382
URL: http://svn.freebsd.org/changeset/base/226382
Log:
MFC r226155:
Set TLS block for the main thread after the relocations are processed.
Modified:
stable/8/libexec/rtld-elf/rtld.c
Directory Properties:
stable/8/libexec/rtld
On Sat, 15 Oct 2011, David Schultz wrote:
Log:
Style fixes and updates to comments.
Submitted by: bde
Thanks for all the libm commits.
Bruce
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubs
Author: marius
Date: Sat Oct 15 09:29:43 2011
New Revision: 226381
URL: http://svn.freebsd.org/changeset/base/226381
Log:
Merge from NetBSD:
- Remove clause 3 and 4 from TNF licenses.
- Fix memset usage.
- Various cleanup.
- Kill caddr_t.
Modified:
head/sys/dev/esp/esp_sbus.c
head/s
Author: das
Date: Sat Oct 15 07:00:28 2011
New Revision: 226380
URL: http://svn.freebsd.org/changeset/base/226380
Log:
Remove some unnecessary initializations.
Obtained from:DragonFlyBSD
Modified:
head/lib/msun/src/e_hypot.c
head/lib/msun/src/e_hypotf.c
head/lib/msun/src/e_lg
39 matches
Mail list logo