git: GCC50: Upgrade base compiler to GCC release 5.2

2015-07-18 Thread John Marino
commit 48c11fcb936f2570092b01f36e981d566bec7439 Author: John Marino dr...@marino.st Date: Sat Jul 18 09:27:06 2015 +0200 GCC50: Upgrade base compiler to GCC release 5.2 Summary of changes: contrib/gcc-5.0/README.DELETED |2 + contrib/gcc-5.0/README.DRAGONFLY |9

git: devfs: Use lwkt_domsg() instead of lwkt_sendmsg() + lwkt_waitport().

2015-07-18 Thread Nuno Antunes
commit 2e05d28308ec39ba929041e19b5ad7709ae761c5 Author: Nuno Antunes nuno.antu...@gmail.com Date: Sat Aug 4 09:03:23 2012 +0100 devfs: Use lwkt_domsg() instead of lwkt_sendmsg() + lwkt_waitport(). * lwkt_domsg() already implements the concept of synchronous message

git: kernel: Use lwkt_domsg() instead of lwkt_sendmsg() + lwkt_waitmsg().

2015-07-18 Thread Nuno Antunes
commit 0702347d1f832c131d5e47d52898d20079b257fd Author: Nuno Antunes nuno.antu...@gmail.com Date: Thu Aug 2 12:41:14 2012 +0100 kernel: Use lwkt_domsg() instead of lwkt_sendmsg() + lwkt_waitmsg(). Summary of changes: sys/kern/subr_disk.c | 3 +-- 1 file changed, 1 insertion(+), 2

git: OpenLIBM: Undefine two C99 macros

2015-07-18 Thread John Marino
commit 45bf7e55b398e7dbacfd9c46d3589c22449f1e0d Author: John Marino dr...@marino.st Date: Sat Jul 18 17:04:01 2015 +0200 OpenLIBM: Undefine two C99 macros Martynas@openbsd believes that only fast FMA for float is implemented, and that the double and long double versions are

git: Create short name locales

2015-07-18 Thread John Marino
commit 58eff38afa67d4a9a3d698f6340f2213020cedb6 Author: John Marino dr...@marino.st Date: Sat Jul 18 11:13:51 2015 +0200 Create short name locales In other (non-BSD?) platforms, it's possible to use a locale such as en_GB. Up until now, this did not work on DragonFly. It

git: sbin/hammer: Align zone# in hammer blockmap output

2015-07-18 Thread Tomohiro Kusumi
commit 850f27ee4767052bf91c4b78ab65df5d796db94e Author: Tomohiro Kusumi kusumi.tomoh...@gmail.com Date: Sat Jul 18 18:49:34 2015 +0900 sbin/hammer: Align zone# in hammer blockmap output - Use printf(%-2d) for zone. Summary of changes: sbin/hammer/cmd_blockmap.c | 8 1

git: sys/vfs/hammer: Add HAMMER_BLOCKMAP_LAYER[12]_INDEX()

2015-07-18 Thread Tomohiro Kusumi
commit f5b0d00fddff8f4f0181ecffecb49b725da0d656 Author: Tomohiro Kusumi kusumi.tomoh...@gmail.com Date: Sun Jul 19 00:38:43 2015 +0900 sys/vfs/hammer: Add HAMMER_BLOCKMAP_LAYER[12]_INDEX() - This commit adds HAMMER_BLOCKMAP_LAYER[12]_INDEX() which is /=sizeof(layer[12])

git: gcc50: Change c++ locale handling

2015-07-18 Thread John Marino
commit 75978a60ac0c368617f1b03b972f9480660cc282 Author: John Marino dr...@marino.st Date: Sun Jul 19 00:22:03 2015 +0200 gcc50: Change c++ locale handling The biggest change is removing the modification of the specified locale. Before locales without extensions were appended

git: sbin/newfs_hammer: Minor fixes

2015-07-18 Thread Tomohiro Kusumi
commit fac8cad69021402ba80df45825e7b057f6304833 Author: Tomohiro Kusumi kusumi.tomoh...@gmail.com Date: Sat Jul 18 16:32:04 2015 +0900 sbin/newfs_hammer: Minor fixes - It's better to call rel_volume() for the root volume here without waiting for potential non-root ones to do

git: sbin/hammer: Remove modified1 flag

2015-07-18 Thread Tomohiro Kusumi
commit 963edea72368c08668ba9c074a0309c2b06274fb Author: Tomohiro Kusumi kusumi.tomoh...@gmail.com Date: Sat Jul 18 15:57:31 2015 +0900 sbin/hammer: Remove modified1 flag - modified1 isn't necessary and also the code is clearer without this flag. - Once layer1

git: default/compilers.conf: Fix include path

2015-07-18 Thread John Marino
commit 7a38cb151f1998ec293023c0ca0a95ac6ed894c0 Author: John Marino dr...@marino.st Date: Sat Jul 18 19:27:33 2015 +0200 default/compilers.conf: Fix include path Reported by: zrj Summary of changes: etc/defaults/compilers.conf | 2 +- 1 file changed, 1 insertion(+), 1

git: sbin/hammer: Make hammer blockmap show verbose info on -v

2015-07-18 Thread Tomohiro Kusumi
commit 2ea1c995574ed795f4d06cf14670571078f90931 Author: Tomohiro Kusumi kusumi.tomoh...@gmail.com Date: Sun Jul 19 00:41:22 2015 +0900 sbin/hammer: Make hammer blockmap show verbose info on -v - Shows volume# and layer1/layer2 index or offset when -v(v) is used. Summary of