]> granicus.if.org Git - zfs/log
zfs
14 years agoMerge branch 'fix-stack-noinline' into refs/top-bases/fix-branch
Brian Behlendorf [Wed, 16 Jun 2010 21:35:14 +0000 (14:35 -0700)]
Merge branch 'fix-stack-noinline' into refs/top-bases/fix-branch

14 years agoAdd fix-stack-noinline topic branch
Brian Behlendorf [Wed, 16 Jun 2010 21:34:41 +0000 (14:34 -0700)]
Add fix-stack-noinline topic branch

Certain function must never be automatically inlined by gcc because
they are stack heavy or called recursively.  This patch flags all
such functions I have found as 'noinline' to prevent gcc from making
the optimization.

14 years agoMerge branch 'fix-stack' into refs/top-bases/fix-branch
Brian Behlendorf [Wed, 16 Jun 2010 21:27:29 +0000 (14:27 -0700)]
Merge branch 'fix-stack' into refs/top-bases/fix-branch

14 years agoRevert fix-stack topic branch
Brian Behlendorf [Wed, 16 Jun 2010 21:23:31 +0000 (14:23 -0700)]
Revert fix-stack topic branch

This patch will be broken in to several independent stack reductions
and reapplied as new topic branches.

14 years agoMerge branch 'fix-stack-dsl_deleg_get' into refs/top-bases/fix-branch
Brian Behlendorf [Wed, 16 Jun 2010 20:49:55 +0000 (13:49 -0700)]
Merge branch 'fix-stack-dsl_deleg_get' into refs/top-bases/fix-branch

14 years agoAdd fix-stack-dsl_deleg_get topic branch
Brian Behlendorf [Wed, 16 Jun 2010 20:49:25 +0000 (13:49 -0700)]
Add fix-stack-dsl_deleg_get topic branch

Reduce stack usage in dsl_deleg_get, gcc flagged it as consuming a
whopping 1040 bytes or potentially 1/4 of a 4K stack.  This patch
moves all the large structures and buffer off the stack and on to
the heap.  This includes 2 zap_cursor_t structs each 52 bytes in
size, 2 zap_attribute_t structs each 280 bytes in size, and 1
256 byte char array.  The total saves on the stack is 880 bytes
after you account for the 5 new pointers added.

Also the source buffer length has been increased from MAXNAMELEN
to MAXNAMELEN+strlen(MOS_DIR_NAME)+1 as described by the comment in
dsl_dir_name().  A buffer overrun may have been possible with the
slightly smaller buffer.

14 years agoMerge branch 'fix-stack-dsl_dir_open_spa' into refs/top-bases/fix-branch
Brian Behlendorf [Wed, 16 Jun 2010 19:40:39 +0000 (12:40 -0700)]
Merge branch 'fix-stack-dsl_dir_open_spa' into refs/top-bases/fix-branch

14 years agoAdd fix-stack-dsl_dir_open_spa topic branch
Brian Behlendorf [Wed, 16 Jun 2010 19:39:44 +0000 (12:39 -0700)]
Add fix-stack-dsl_dir_open_spa topic branch

Reduce stack usage by 256 bytes by moving buf char array from
the stack to the heap.

14 years agoMerge branch 'fix-stack-lzjb' into refs/top-bases/fix-branch
Brian Behlendorf [Mon, 14 Jun 2010 23:45:33 +0000 (16:45 -0700)]
Merge branch 'fix-stack-lzjb' into refs/top-bases/fix-branch

14 years agoAdd fix-stack-lzjb topic branch
Brian Behlendorf [Mon, 14 Jun 2010 23:45:01 +0000 (16:45 -0700)]
Add fix-stack-lzjb topic branch

Reduce kernel stack usage by lzjb_compress() by moving uint16 array
off the stack and on to the heap.  The exact performance implications
of this I have not measured but we absolutely need to keep stack
usage to a minimum.  If/when this becomes and issue we optimize.

14 years agoMerge branch 'fix-kstat-xuio' into refs/top-bases/fix-branch
Brian Behlendorf [Mon, 14 Jun 2010 23:43:32 +0000 (16:43 -0700)]
Merge branch 'fix-kstat-xuio' into refs/top-bases/fix-branch

14 years agoAdd fix-kstat-xuio topic branch
Brian Behlendorf [Mon, 14 Jun 2010 23:43:01 +0000 (16:43 -0700)]
Add fix-kstat-xuio topic branch

Move xiou stat structures from a header to the dmu.c source as is
done with all the other kstat interfaces.  This information is local
to dmu.c registered the xuio kstat and should stay that way.

14 years agoMerge branch 'fix-metaslab' into refs/top-bases/fix-branch
Brian Behlendorf [Mon, 14 Jun 2010 23:40:45 +0000 (16:40 -0700)]
Merge branch 'fix-metaslab' into refs/top-bases/fix-branch

14 years agoAdd fix-metaslab topic branch
Brian Behlendorf [Mon, 14 Jun 2010 23:40:26 +0000 (16:40 -0700)]
Add fix-metaslab topic branch

If your only going to allow one allocator to be used and it is defined
at compile time there is no point including the others in the build.
This patch could/should be refined for Linux to make the metaslab
configurable at run time.  That might be a bit tricky however since
you would need to quiese all IO.  Short of that making it configurable
as a module load option would be a reasonable compromise.

14 years agoMerge branch 'fix-current' into refs/top-bases/fix-branch
Brian Behlendorf [Mon, 14 Jun 2010 23:39:27 +0000 (16:39 -0700)]
Merge branch 'fix-current' into refs/top-bases/fix-branch

14 years agoAdd fix-current topic branch
Brian Behlendorf [Mon, 14 Jun 2010 23:38:56 +0000 (16:38 -0700)]
Add fix-current topic branch

In the linux kernel 'current' is defined to mean the current process
and can never be used as a local variable in a function.  Simply
replace all usage of 'current' with 'curr' in this function.

14 years agoMerge branch 'fix-pthreads' into refs/top-bases/fix-branch
Brian Behlendorf [Mon, 14 Jun 2010 23:22:00 +0000 (16:22 -0700)]
Merge branch 'fix-pthreads' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-taskq' into refs/top-bases/fix-branch
Brian Behlendorf [Mon, 14 Jun 2010 23:21:59 +0000 (16:21 -0700)]
Merge branch 'fix-taskq' into refs/top-bases/fix-branch

14 years agoAdd fix-pthreads topic branch
Brian Behlendorf [Mon, 14 Jun 2010 23:20:44 +0000 (16:20 -0700)]
Add fix-pthreads topic branch

This is a portability change which removes the dependence of the Solaris
thread library.  All locations where Solaris thread API was used before
have been replaced with equivilant Solaris kernel style thread calls.
In user space the kernel style threading API is implemented in term of
the portable pthreads library.  This includes all threads, mutexs,
condition variables, reader/writer locks, and taskqs.

14 years agoUpdate fix-taskq to never sleep at interrupt time
Brian Behlendorf [Mon, 14 Jun 2010 23:14:23 +0000 (16:14 -0700)]
Update fix-taskq to never sleep at interrupt time

Updated fix to detect if we are in an interrupt and only sleep if it
is safe to do some.  I guess it must be safe to sleep under Solaris
this must be handled in a sort interrupt handler there

14 years agoMerge branch 'fix-error-handling' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:54 +0000 (13:54 -0700)]
Merge branch 'fix-error-handling' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-error-handling' into fix-error-handling
Brian Behlendorf [Fri, 28 May 2010 20:54:54 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-error-handling' into fix-error-handling

14 years agoMerge branch 'fix-acl' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:53 +0000 (13:54 -0700)]
Merge branch 'fix-acl' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-deadcode' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:53 +0000 (13:54 -0700)]
Merge branch 'fix-deadcode' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-acl' into fix-acl
Brian Behlendorf [Fri, 28 May 2010 20:54:53 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-acl' into fix-acl

14 years agoMerge branch 'fix-strncat' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:52 +0000 (13:54 -0700)]
Merge branch 'fix-strncat' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-deadcode' into fix-deadcode
Brian Behlendorf [Fri, 28 May 2010 20:54:52 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-deadcode' into fix-deadcode

14 years agoMerge commit 'refs/top-bases/fix-strncat' into fix-strncat
Brian Behlendorf [Fri, 28 May 2010 20:54:49 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-strncat' into fix-strncat

Conflicts:
lib/libzfs/libzfs_sendrecv.c

14 years agoMerge branch 'fix-list' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:13 +0000 (13:54 -0700)]
Merge branch 'fix-list' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-taskq' into fix-taskq
Brian Behlendorf [Fri, 28 May 2010 20:54:12 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-taskq' into fix-taskq

14 years agoMerge branch 'fix-taskq' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:12 +0000 (13:54 -0700)]
Merge branch 'fix-taskq' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-list' into fix-list
Brian Behlendorf [Fri, 28 May 2010 20:54:12 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-list' into fix-list

14 years agoMerge branch 'fix-stack' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:54:11 +0000 (13:54 -0700)]
Merge branch 'fix-stack' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-stack' into fix-stack
Brian Behlendorf [Fri, 28 May 2010 20:54:08 +0000 (13:54 -0700)]
Merge commit 'refs/top-bases/fix-stack' into fix-stack

Conflicts:
module/zfs/dmu_objset.c
module/zfs/spa_history.c

14 years agoMerge branch 'fix-rwlocks' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:52:55 +0000 (13:52 -0700)]
Merge branch 'fix-rwlocks' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-rwlocks' into fix-rwlocks
Brian Behlendorf [Fri, 28 May 2010 20:52:52 +0000 (13:52 -0700)]
Merge commit 'refs/top-bases/fix-rwlocks' into fix-rwlocks

Conflicts:
module/zfs/dsl_dataset.c

14 years agoMerge branch 'fix-no-zmod' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:52:29 +0000 (13:52 -0700)]
Merge branch 'fix-no-zmod' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-no-zmod' into fix-no-zmod
Brian Behlendorf [Fri, 28 May 2010 20:52:29 +0000 (13:52 -0700)]
Merge commit 'refs/top-bases/fix-no-zmod' into fix-no-zmod

14 years agoMerge branch 'fix-newlines' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:52:28 +0000 (13:52 -0700)]
Merge branch 'fix-newlines' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-evict-dbufs' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:52:28 +0000 (13:52 -0700)]
Merge branch 'fix-evict-dbufs' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-newlines' into fix-newlines
Brian Behlendorf [Fri, 28 May 2010 20:52:28 +0000 (13:52 -0700)]
Merge commit 'refs/top-bases/fix-newlines' into fix-newlines

14 years agoMerge branch 'fix-dnode-cons' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:52:27 +0000 (13:52 -0700)]
Merge branch 'fix-dnode-cons' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-evict-dbufs' into fix-evict-dbufs
Brian Behlendorf [Fri, 28 May 2010 20:52:27 +0000 (13:52 -0700)]
Merge commit 'refs/top-bases/fix-evict-dbufs' into fix-evict-dbufs

14 years agoMerge commit 'refs/top-bases/fix-dnode-cons' into fix-dnode-cons
Brian Behlendorf [Fri, 28 May 2010 20:52:23 +0000 (13:52 -0700)]
Merge commit 'refs/top-bases/fix-dnode-cons' into fix-dnode-cons

Conflicts:
module/zfs/dnode.c

14 years agoMerge branch 'fix-dbuf_dirty_record_t' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 20:51:29 +0000 (13:51 -0700)]
Merge branch 'fix-dbuf_dirty_record_t' into refs/top-bases/fix-branch

Conflicts:
lib/libzfs/libzfs_sendrecv.c
module/zfs/dmu_objset.c
module/zfs/dnode.c
module/zfs/dsl_dataset.c
module/zfs/spa_history.c

14 years agoMerge commit 'refs/top-bases/fix-dbuf_dirty_record_t' into fix-dbuf_dirty_record_t
Brian Behlendorf [Fri, 28 May 2010 20:46:45 +0000 (13:46 -0700)]
Merge commit 'refs/top-bases/fix-dbuf_dirty_record_t' into fix-dbuf_dirty_record_t

Conflicts:
module/zfs/dnode_sync.c

14 years agoUpdate core ZFS code from build 121 to build 141.
Brian Behlendorf [Fri, 28 May 2010 20:45:14 +0000 (13:45 -0700)]
Update core ZFS code from build 121 to build 141.

14 years agoMerge branch 'fix-get-configs' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 19:20:30 +0000 (12:20 -0700)]
Merge branch 'fix-get-configs' into refs/top-bases/fix-branch

14 years agoRevert fix-get-configs should no longer be needed
Brian Behlendorf [Fri, 28 May 2010 19:18:45 +0000 (12:18 -0700)]
Revert fix-get-configs should no longer be needed

14 years agoMerge branch 'fix-dsl_pool_t' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 17:14:42 +0000 (10:14 -0700)]
Merge branch 'fix-dsl_pool_t' into refs/top-bases/fix-branch

14 years agoRevert fix-dsl_pool_t fixed upstream
Brian Behlendorf [Fri, 28 May 2010 17:08:02 +0000 (10:08 -0700)]
Revert fix-dsl_pool_t fixed upstream

14 years agoMerge branch 'fix-taskq' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 17:00:43 +0000 (10:00 -0700)]
Merge branch 'fix-taskq' into refs/top-bases/fix-branch

14 years agoRevert fix-taskq changes reevaluate after update.
Brian Behlendorf [Fri, 28 May 2010 16:54:03 +0000 (09:54 -0700)]
Revert fix-taskq changes reevaluate after update.

14 years agoMerge branch 'fix-clock-wrap' into refs/top-bases/fix-branch
Brian Behlendorf [Fri, 28 May 2010 00:02:13 +0000 (17:02 -0700)]
Merge branch 'fix-clock-wrap' into refs/top-bases/fix-branch

14 years agoRevert fix-clock-wrap fixed upstream
Brian Behlendorf [Thu, 27 May 2010 23:54:23 +0000 (16:54 -0700)]
Revert fix-clock-wrap fixed upstream

This was more or less fixed upstream.  Instead of directly accessing
lbolt they now use ddi_get_lbolt() which we can have do the right
thing is the SPL so we don't need to carry this patch.

14 years agoMerge branch 'fix-error-handling' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:01:03 +0000 (15:01 -0700)]
Merge branch 'fix-error-handling' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-error-handling' into fix-error-handling
Brian Behlendorf [Tue, 18 May 2010 22:01:02 +0000 (15:01 -0700)]
Merge commit 'refs/top-bases/fix-error-handling' into fix-error-handling

14 years agoMerge branch 'fix-acl' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:01:02 +0000 (15:01 -0700)]
Merge branch 'fix-acl' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-acl' into fix-acl
Brian Behlendorf [Tue, 18 May 2010 22:01:01 +0000 (15:01 -0700)]
Merge commit 'refs/top-bases/fix-acl' into fix-acl

14 years agoMerge commit 'refs/top-bases/fix-deadcode' into fix-deadcode
Brian Behlendorf [Tue, 18 May 2010 22:01:00 +0000 (15:01 -0700)]
Merge commit 'refs/top-bases/fix-deadcode' into fix-deadcode

14 years agoMerge branch 'fix-deadcode' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:01:00 +0000 (15:01 -0700)]
Merge branch 'fix-deadcode' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-strncat' into fix-strncat
Brian Behlendorf [Tue, 18 May 2010 22:00:59 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-strncat' into fix-strncat

14 years agoMerge branch 'fix-strncat' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:59 +0000 (15:00 -0700)]
Merge branch 'fix-strncat' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-list' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:58 +0000 (15:00 -0700)]
Merge branch 'fix-list' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-list' into fix-list
Brian Behlendorf [Tue, 18 May 2010 22:00:57 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-list' into fix-list

14 years agoMerge branch 'fix-taskq' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:57 +0000 (15:00 -0700)]
Merge branch 'fix-taskq' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-taskq' into fix-taskq
Brian Behlendorf [Tue, 18 May 2010 22:00:56 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-taskq' into fix-taskq

14 years agoMerge commit 'refs/top-bases/fix-stack' into fix-stack
Brian Behlendorf [Tue, 18 May 2010 22:00:55 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-stack' into fix-stack

14 years agoMerge branch 'fix-stack' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:55 +0000 (15:00 -0700)]
Merge branch 'fix-stack' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-rwlocks' into fix-rwlocks
Brian Behlendorf [Tue, 18 May 2010 22:00:54 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-rwlocks' into fix-rwlocks

14 years agoMerge branch 'fix-rwlocks' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:54 +0000 (15:00 -0700)]
Merge branch 'fix-rwlocks' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-no-zmod' into fix-no-zmod
Brian Behlendorf [Tue, 18 May 2010 22:00:53 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-no-zmod' into fix-no-zmod

14 years agoMerge branch 'fix-no-zmod' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:53 +0000 (15:00 -0700)]
Merge branch 'fix-no-zmod' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-newlines' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:52 +0000 (15:00 -0700)]
Merge branch 'fix-newlines' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-newlines' into fix-newlines
Brian Behlendorf [Tue, 18 May 2010 22:00:51 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-newlines' into fix-newlines

14 years agoMerge branch 'fix-get-configs' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:51 +0000 (15:00 -0700)]
Merge branch 'fix-get-configs' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-get-configs' into fix-get-configs
Brian Behlendorf [Tue, 18 May 2010 22:00:50 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-get-configs' into fix-get-configs

14 years agoMerge commit 'refs/top-bases/fix-evict-dbufs' into fix-evict-dbufs
Brian Behlendorf [Tue, 18 May 2010 22:00:49 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-evict-dbufs' into fix-evict-dbufs

14 years agoMerge branch 'fix-evict-dbufs' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:49 +0000 (15:00 -0700)]
Merge branch 'fix-evict-dbufs' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-dsl_pool_t' into fix-dsl_pool_t
Brian Behlendorf [Tue, 18 May 2010 22:00:48 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-dsl_pool_t' into fix-dsl_pool_t

14 years agoMerge branch 'fix-dsl_pool_t' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:48 +0000 (15:00 -0700)]
Merge branch 'fix-dsl_pool_t' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-dnode-cons' into fix-dnode-cons
Brian Behlendorf [Tue, 18 May 2010 22:00:47 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-dnode-cons' into fix-dnode-cons

14 years agoMerge branch 'fix-dnode-cons' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:47 +0000 (15:00 -0700)]
Merge branch 'fix-dnode-cons' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-dbuf_dirty_record_t' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:46 +0000 (15:00 -0700)]
Merge branch 'fix-dbuf_dirty_record_t' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-dbuf_dirty_record_t' into fix-dbuf_dirty_record_t
Brian Behlendorf [Tue, 18 May 2010 22:00:45 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-dbuf_dirty_record_t' into fix-dbuf_dirty_record_t

14 years agoMerge branch 'fix-clock-wrap' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 22:00:45 +0000 (15:00 -0700)]
Merge branch 'fix-clock-wrap' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-clock-wrap' into fix-clock-wrap
Brian Behlendorf [Tue, 18 May 2010 22:00:44 +0000 (15:00 -0700)]
Merge commit 'refs/top-bases/fix-clock-wrap' into fix-clock-wrap

14 years agoAdd AUTHORS to master branch
Brian Behlendorf [Tue, 18 May 2010 21:55:01 +0000 (14:55 -0700)]
Add AUTHORS to master branch

14 years agoMerge branch 'fix-error-handling' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 21:33:32 +0000 (14:33 -0700)]
Merge branch 'fix-error-handling' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-error-handling' into fix-error-handling
Brian Behlendorf [Tue, 18 May 2010 21:33:31 +0000 (14:33 -0700)]
Merge commit 'refs/top-bases/fix-error-handling' into fix-error-handling

14 years agoMerge branch 'fix-acl' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 21:33:31 +0000 (14:33 -0700)]
Merge branch 'fix-acl' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-acl' into fix-acl
Brian Behlendorf [Tue, 18 May 2010 21:33:30 +0000 (14:33 -0700)]
Merge commit 'refs/top-bases/fix-acl' into fix-acl

14 years agoMerge commit 'refs/top-bases/fix-deadcode' into fix-deadcode
Brian Behlendorf [Tue, 18 May 2010 21:33:29 +0000 (14:33 -0700)]
Merge commit 'refs/top-bases/fix-deadcode' into fix-deadcode

14 years agoMerge branch 'fix-deadcode' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 21:33:29 +0000 (14:33 -0700)]
Merge branch 'fix-deadcode' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-strncat' into fix-strncat
Brian Behlendorf [Tue, 18 May 2010 21:33:28 +0000 (14:33 -0700)]
Merge commit 'refs/top-bases/fix-strncat' into fix-strncat

14 years agoMerge branch 'fix-strncat' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 21:33:28 +0000 (14:33 -0700)]
Merge branch 'fix-strncat' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-list' into fix-list
Brian Behlendorf [Tue, 18 May 2010 21:33:27 +0000 (14:33 -0700)]
Merge commit 'refs/top-bases/fix-list' into fix-list

14 years agoMerge branch 'fix-list' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 21:33:27 +0000 (14:33 -0700)]
Merge branch 'fix-list' into refs/top-bases/fix-branch

14 years agoMerge branch 'fix-taskq' into refs/top-bases/fix-branch
Brian Behlendorf [Tue, 18 May 2010 21:33:26 +0000 (14:33 -0700)]
Merge branch 'fix-taskq' into refs/top-bases/fix-branch

14 years agoMerge commit 'refs/top-bases/fix-taskq' into fix-taskq
Brian Behlendorf [Tue, 18 May 2010 21:33:25 +0000 (14:33 -0700)]
Merge commit 'refs/top-bases/fix-taskq' into fix-taskq