dragonflybsd-submit mailing list

FromSubjectsort iconDate
Justin C. Sherrill Jan 3, 6:52 pm 2011
Ilya Dryomov
git: HAMMER - Add live dedup sysctl and support
commit 507df98a152612f739140d9f1ac5b30cd022eea2 Author: Ilya Dryomov <idryomov@gmail.com> Date: Tue Jan 4 03:07:02 2011 +0200 HAMMER - Add live dedup sysctl and support * Adds *experimental* live dedup (aka efficient cp) support * sysctl vfs.hammer.live_dedup 0 - disabled (default) 1 - enabled, populate dedup cache on reads 2 - enabled, populate dedup cache on reads and writes Summary of changes: sys/vfs/hammer/hammer.h | 59 ...
Jan 3, 6:08 pm 2011
Matthew Dillon
git: kernel - Fix vkernel lwp stuck thread bug
commit 7e8888ce7f674f2071ff724ef17afa053eadd953 Author: Matthew Dillon <dillon@apollo.backplane.com> Date: Mon Jan 3 20:22:47 2011 -0800 kernel - Fix vkernel lwp stuck thread bug * Fix a tsleep hz / 100 which calculates to 0 due to the vkernel's 20hz tick rate. This could cause threads running under the vkernel to get stuck. Summary of changes: sys/kern/vfs_bio.c | 5 +++-- 1 files changed, 3 insertions(+), 2 ...
Jan 3, 9:24 pm 2011
Matthew Dillon
git: HAMMER VFS - Fix TAILQ bug
commit d1ce15588f8d8384181ae06fee5acb8ce46caace Author: Matthew Dillon <dillon@apollo.backplane.com> Date: Mon Jan 3 20:14:22 2011 -0800 HAMMER VFS - Fix TAILQ bug * Fix two cases where an ocp (object id allocation cache block for directories) is kfree()'d without removing it from hmp->objid_cache_list. These could cause a panic or lockup. * Increase the inode allocation / directory hash matching bitmap fill level from 50% to 75%. * ...
Jan 3, 9:24 pm 2011
Matthew Dillon
git: HAMMER VFS - Increase directory object cache
commit 7d29aec0416d99437a6ab81ed199894e846ca2e6 Author: Matthew Dillon <dillon@apollo.backplane.com> Date: Mon Jan 3 20:19:59 2011 -0800 HAMMER VFS - Increase directory object cache * Increase from 1024 to 2048 allocation blocks. Summary of changes: sys/vfs/hammer/hammer.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/7d29aec0416d99437a6ab81ed19989... -- DragonFly BSD source repository
Jan 3, 9:24 pm 2011
Ilya Dryomov
git: network - Fix pf build when no INET6
commit 2dba2225191859832514d02c72ea54e3a8b2bb19 Author: Ilya Dryomov <idryomov@gmail.com> Date: Tue Jan 4 14:13:27 2011 +0200 network - Fix pf build when no INET6 * Definition of struct ip6_hdr is not included when no INET6, #ifdef out the code that uses it. Summary of changes: sys/net/pf/pf.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/2dba2225191859832514d02c72ea54... -- ...
Jan 4, 5:19 am 2011
Sascha Wildner
git: Make some space in sys/dev/raid/Makefile.
commit e1a8ed2d45eb15d08a28ff1c86cc596236bb57d4 Author: Sascha Wildner <saw@online.de> Date: Sun Dec 26 14:00:46 2010 +0100 Make some space in sys/dev/raid/Makefile. Summary of changes: sys/dev/raid/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/e1a8ed2d45eb15d08a28ff1c86cc59... -- DragonFly BSD source repository
Jan 4, 8:22 am 2011
Sascha Wildner
git: Add hptmv(4), a driver for HighPoint RocketRAID 182 ...
commit 35878b555b34ba9ef289f7767aa29d02df2cde48 Author: Sascha Wildner <saw@online.de> Date: Tue Jan 4 16:19:23 2011 +0100 Add hptmv(4), a driver for HighPoint RocketRAID 182x controllers. It was tested with an 1820A card. Thanks to HighPoint and FreeBSD (from which it was ported). Summary of changes: share/man/man4/Makefile | 1 + share/man/man4/hptiop.4 | 4 +- share/man/man4/hptmv.4 | 102 + ...
Jan 4, 8:22 am 2011
Samuel Greear
git: hammer - Furnish descriptions for the live dedup sysctl's
commit f06b3d6d45b779f7f3e1375163b28faf49961fa7 Author: Samuel J. Greear <sjg@thesjg.com> Date: Tue Jan 4 15:55:50 2011 +0000 hammer - Furnish descriptions for the live dedup sysctl's Summary of changes: sys/vfs/hammer/hammer_vfsops.c | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/f06b3d6d45b779f7f3e1375163b28f... -- DragonFly BSD source repository
Jan 4, 9:01 am 2011
Samuel Greear
git: platform - Allow building without COMPAT_DF12
commit 10108759eac2b80c8622ad9c52cca573e81cd98c Author: Samuel J. Greear <sjg@thesjg.com> Date: Tue Jan 4 15:53:39 2011 +0000 platform - Allow building without COMPAT_DF12 Summary of changes: sys/platform/pc32/conf/files | 4 ++-- sys/platform/vkernel/conf/files | 4 ++-- sys/platform/vkernel64/conf/files | 4 ++-- 3 files changed, 6 insertions(+), 6 ...
Jan 4, 9:01 am 2011
Ilya Dryomov
git: HAMMER - Add live_dedup_cache_size sysctl
commit e2ef7a952eb731a891bead7cbf328dd8d44c4293 Author: Ilya Dryomov <idryomov@gmail.com> Date: Tue Jan 4 18:15:48 2011 +0200 HAMMER - Add live_dedup_cache_size sysctl * There is now a hammer_live_dedup_cache_size variable which can be set via sysctl vfs.hammer.live_dedup_cache_size. The default is 4096. * A better solution is to make it scale automatically according to nbufs or a number of vnodes. Summary of changes: sys/vfs/hammer/hammer.h ...
Jan 4, 12:51 pm 2011
Samuel Greear
git: hammer - Describe live_dedup_cache_size sysctl
commit 2b34db9bc289b439c114fcb322ded23b04c17265 Author: Samuel J. Greear <sjg@thesjg.com> Date: Tue Jan 4 21:39:46 2011 +0000 hammer - Describe live_dedup_cache_size sysctl Summary of changes: sys/vfs/hammer/hammer_vfsops.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/2b34db9bc289b439c114fcb322ded2... -- DragonFly BSD source repository
Jan 4, 2:37 pm 2011
Matthew Dillon
git: vkernel - Fix corrupt tailq (vkernel64 only)
commit 74c9628e78f2e1c7d9356b41407b394220745b7e Author: Matthew Dillon <dillon@apollo.backplane.com> Date: Tue Jan 4 15:06:59 2011 -0800 vkernel - Fix corrupt tailq (vkernel64 only) * Properly remove an exiting thread from any tsleep queue it might be enqueued on (due to tsleep_interlock() use cases) prior to exiting. * Fixes tailq corruption which can occur with threaded programs. * Fix is only applicable to vkernel64. All other platforms already ...
Jan 4, 4:09 pm 2011
previous daytodaynext day
January 3, 2011January 4, 2011None