]> git.proxmox.com Git - mirror_spl-debian.git/log
mirror_spl-debian.git
15 years agokmem slab fixes
Brian Behlendorf [Thu, 12 Feb 2009 21:32:10 +0000 (13:32 -0800)]
kmem slab fixes

- Default SPL_KMEM_CACHE_DELAY changed to 15 to match Solaris.
- Aged out slab checking occurs every SPL_KMEM_CACHE_DELAY / 3.
- skc->skc_reap tunable added whichs allows callers of
  spl_slab_reclaim() to cap the number of slabs reclaimed.
  On Solaris all eligible slabs are always reclaimed, and this
  is still the default behavior.  However, I suspect that is
  not always wise for reasons such as in the next comment.
- spl_slab_reclaim() added cond_resched() while walking the
  slab/object free lists.  Soft lockups were observed when
  freeing large numbers of vmalloc'd slabs/objets.
- spl_slab_reclaim() 'sks->sks_ref > 0' check changes from
  incorrect 'break' to 'continue' to ensure all slabs are
  checked.
- spl_cache_age() reworked to avoid a deadlock with
  do_flush_tlb_all() which occured because we slept waiting
  for completion in spl_cache_age().  To waiting for magazine
  reclamation to finish is not required so we no longer wait.
- spl_magazine_create() and spl_magazine_destroy() shifted
  back to using for_each_online_cpu() instead of the
  spl_on_each_cpu() approach which was of course a bad idea
  due to memory allocations which Ricardo pointed out.

15 years agoMinor bug fix due to MAXOFFSET_T constant being too large on 32-bit systems.
Ricardo M. Correia [Sat, 7 Feb 2009 00:53:39 +0000 (00:53 +0000)]
Minor bug fix due to MAXOFFSET_T constant being too large on 32-bit systems.

15 years agoPrep for 0.4.2 tag
Brian Behlendorf [Thu, 5 Feb 2009 21:34:51 +0000 (13:34 -0800)]
Prep for 0.4.2 tag

15 years agoAdditional Linux VM integration
Brian Behlendorf [Thu, 5 Feb 2009 20:26:34 +0000 (12:26 -0800)]
Additional Linux VM integration

Added support for Solaris swapfs_minfree, and swapfs_reserve tunables.
In additional availrmem is now available and return a reasonable value
which is reasonably analogous to the Solaris meaning.  On linux we
return the sun of free and inactive pages since these are all easily
reclaimable.

All tunables are available in /proc/sys/kernel/spl/vm/* and they may
need a little adjusting once we observe the real behavior.  Some of
the defaults are mapped to similar linux counterparts, others are
straight from the OpenSolaris defaults.

15 years agoLinux VM integration / device special files
Brian Behlendorf [Wed, 4 Feb 2009 23:15:41 +0000 (15:15 -0800)]
Linux VM integration / device special files

Support added to provide reasonable values for the global Solaris
VM variables: minfree, desfree, lotsfree, needfree.  These values
are set to the sum of their per-zone linux counterparts which
should be close enough for Solaris consumers.

When a non-GPL app links against the SPL we cannot use the udev
interfaces, which means non of the device special files are created.
Because of this I had added a poor mans udev which cause the SPL
to invoke an upcall and create the basic devices when a minor
is registered.  When a minor is unregistered we use the vnode
interface to unlink the special file.

15 years ago2.6.27+ portability changes
Brian Behlendorf [Mon, 2 Feb 2009 23:12:30 +0000 (15:12 -0800)]
2.6.27+ portability changes

- Added SPL_AC_3ARGS_ON_EACH_CPU configure check to determine
  if the older 4 argument version of on_each_cpu() should be
  used or the new 3 argument version.  The retry argument was
  dropped in the new API which was never used anyway.
- Updated work queue compatibility wrappers.  The old way this
  worked was to pass a data point when initialized the workqueue.
  The new API assumed the work item is embedding in a structure
  and we us container_of() to find that data pointer.
- Updated skc->skc_flags to be an unsigned long which is now
  type checked in the bit operations.  This silences the warnings.
- Updated autogen products and splat tests accordingly

15 years agoMake the number of system taskq threads based on the node of cores in the node, as...
Brian Behlendorf [Mon, 2 Feb 2009 16:53:53 +0000 (08:53 -0800)]
Make the number of system taskq threads based on the node of cores in the node, as is done for most linux system tasks

15 years agoUpdate thread tests to have max_time
Brian Behlendorf [Sat, 31 Jan 2009 05:24:42 +0000 (21:24 -0800)]
Update thread tests to have max_time

15 years agoAdd new workqueue header
Brian Behlendorf [Sat, 31 Jan 2009 05:11:42 +0000 (21:11 -0800)]
Add new workqueue header

15 years agokmem_cache hardening and performance improvements
Brian Behlendorf [Sat, 31 Jan 2009 04:54:49 +0000 (20:54 -0800)]
kmem_cache hardening and performance improvements

- Added slab work queue task which gradually ages and free's slabs
  from the cache which have not been used recently.
- Optimized slab packing algorithm to ensure each slab contains the
  maximum number of objects without create to large a slab.
- Fix deadlock, we can never call kv_free() under the skc_lock.  We
  now unlink the objects and slabs from the cache itself and attach
  them to a private work list.  The contents of the list are then
  subsequently freed outside the spin lock.
- Move magazine create/destroy operation on to local cpu.
- Further performace optimizations by minimize the usage of the large
  per-cache skc_lock.  This includes the addition of KMC_BIT_REAPING
  bit mask which is used to prevent concurrent reaping, and to defer
  new slab creation when reaping is occuring.
- Add KMC_BIT_DESTROYING bit mask which is set when the cache is being
  destroyed, this is used to catch any task accessing the cache while
  it is being destroyed.
- Add comments to all the functions and additional comments to try
  and make everything as clear as possible.
- Major cleanup and additions to the SPLAT kmem tests to more
  rigerously stress the cache implementation and look for any problems.
  This includes correctness and performance tests.
- Updated portable work queue interfaces

15 years agoRemove debug check was was accidentally left in place an prevent the slab cache from...
Brian Behlendorf [Tue, 27 Jan 2009 04:10:23 +0000 (20:10 -0800)]
Remove debug check was was accidentally left in place an prevent the slab cache from working on systems with >4 cores

15 years agoPull the blkdev header in to the sunldi for some useful structure definitions and...
Brian Behlendorf [Tue, 27 Jan 2009 00:47:49 +0000 (16:47 -0800)]
Pull the blkdev header in to the sunldi for some useful structure definitions and helper functions

15 years agoImplement kmem cache alignment argument
Brian Behlendorf [Mon, 26 Jan 2009 17:02:04 +0000 (09:02 -0800)]
Implement kmem cache alignment argument

15 years agoRemove stray ` from macro
Brian Behlendorf [Fri, 23 Jan 2009 16:59:11 +0000 (08:59 -0800)]
Remove stray ` from macro

15 years agoSleep uninteruptibly, waking up early may result in a crash
Brian Behlendorf [Thu, 22 Jan 2009 17:58:48 +0000 (09:58 -0800)]
Sleep uninteruptibly, waking up early may result in a crash

15 years agoUpdate debug.h to standardize VERIFY3_IMPL error messages in debug and non-debug...
Brian Behlendorf [Thu, 22 Jan 2009 17:41:47 +0000 (09:41 -0800)]
Update debug.h to standardize VERIFY3_IMPL error messages in debug and non-debug mode

15 years agoPrep for 0.4.1 tag
Brian Behlendorf [Wed, 21 Jan 2009 19:46:02 +0000 (11:46 -0800)]
Prep for 0.4.1 tag

15 years agoMinor fix for compiler warning when KMEM_TRACKING is enabled
Brian Behlendorf [Tue, 20 Jan 2009 21:39:35 +0000 (13:39 -0800)]
Minor fix for compiler warning when KMEM_TRACKING is enabled

15 years agoKMEM_TRACKING turned up a missing free in list test 6, fix the leak
Brian Behlendorf [Tue, 20 Jan 2009 20:47:53 +0000 (12:47 -0800)]
KMEM_TRACKING turned up a missing free in list test 6, fix the leak

15 years agoEnsure -NDEBUG does not get added to spl_config.h and is only set in the build option...
Brian Behlendorf [Tue, 20 Jan 2009 19:59:47 +0000 (11:59 -0800)]
Ensure -NDEBUG does not get added to spl_config.h and is only set in the build options.  This allows other kernel modules to use spl_config to leverage the reset of the config checks without getting confused with the debug options

15 years agoRefresh libtool
Brian Behlendorf [Thu, 15 Jan 2009 18:47:24 +0000 (10:47 -0800)]
Refresh libtool

15 years agoRename modules to module and update references
Brian Behlendorf [Thu, 15 Jan 2009 18:44:54 +0000 (10:44 -0800)]
Rename modules to module and update references

15 years agoMake the splat load message caps just for consistency
Brian Behlendorf [Tue, 13 Jan 2009 19:45:02 +0000 (11:45 -0800)]
Make the splat load message caps just for consistency

15 years agoTASKQ_DYNAMIC not yet support, do not create the global taskq with that flag or we...
Brian Behlendorf [Tue, 13 Jan 2009 19:43:05 +0000 (11:43 -0800)]
TASKQ_DYNAMIC not yet support, do not create the global taskq with that flag or we crash with debug enabled.  Also don't bother dumping debug when debugging is diabled, it's pointless

15 years agoRework ddi_strtox calls to a native implementation which actuall supports the EINVAL...
Brian Behlendorf [Tue, 13 Jan 2009 17:30:59 +0000 (09:30 -0800)]
Rework ddi_strtox calls to a native implementation which actuall supports the EINVAL, ERANGE error handling, plus add a regression suite to ensure I got it atleast mostly right

15 years agoAdd missing stub headers
Brian Behlendorf [Sat, 10 Jan 2009 00:04:44 +0000 (16:04 -0800)]
Add missing stub headers

15 years agoAdd basic ksid_lookupdomain and ksiddomain_rele support, just allocations
Brian Behlendorf [Fri, 9 Jan 2009 23:30:53 +0000 (15:30 -0800)]
Add basic ksid_lookupdomain and ksiddomain_rele support, just allocations

15 years agoMake sure we export ddi_quiesce_not_needed
Brian Behlendorf [Fri, 9 Jan 2009 22:30:30 +0000 (14:30 -0800)]
Make sure we export ddi_quiesce_not_needed

15 years agoAdd two new stub headers
Brian Behlendorf [Fri, 9 Jan 2009 22:04:13 +0000 (14:04 -0800)]
Add two new stub headers

15 years agoAdd VOP_SEEK
Brian Behlendorf [Fri, 9 Jan 2009 21:59:39 +0000 (13:59 -0800)]
Add VOP_SEEK

15 years agoAdd missing policy includes, add missing sun ddi bits
Brian Behlendorf [Fri, 9 Jan 2009 18:49:47 +0000 (10:49 -0800)]
Add missing policy includes, add missing sun ddi bits

15 years agoAdd share.h stub
Brian Behlendorf [Fri, 9 Jan 2009 18:06:18 +0000 (10:06 -0800)]
Add share.h stub

15 years agoDrat fix missing ;
Brian Behlendorf [Fri, 9 Jan 2009 18:05:03 +0000 (10:05 -0800)]
Drat fix missing ;

15 years agoAdd missing callback_context_t and fid_t types
Brian Behlendorf [Fri, 9 Jan 2009 18:03:37 +0000 (10:03 -0800)]
Add missing callback_context_t and fid_t types

15 years agoAdd stubs for three more includes
Brian Behlendorf [Fri, 9 Jan 2009 17:47:27 +0000 (09:47 -0800)]
Add stubs for three more includes

15 years agoAdd active test for splat list tests
Brian Behlendorf [Wed, 7 Jan 2009 21:48:36 +0000 (13:48 -0800)]
Add active test for splat list tests

15 years agoAdd 5 splat tests for list handling
Brian Behlendorf [Wed, 7 Jan 2009 20:54:03 +0000 (12:54 -0800)]
Add 5 splat tests for list handling

15 years agoAdd include/sys/compress.h header
Brian Behlendorf [Tue, 6 Jan 2009 17:47:00 +0000 (09:47 -0800)]
Add include/sys/compress.h header

15 years agoAdd P2BOUNDARY macro
Brian Behlendorf [Tue, 6 Jan 2009 17:23:13 +0000 (09:23 -0800)]
Add P2BOUNDARY macro

15 years agoPull in some default page typedefs
Brian Behlendorf [Tue, 6 Jan 2009 00:14:38 +0000 (16:14 -0800)]
Pull in some default page typedefs

15 years agoAdd DTRACE_PROBE(a)
Brian Behlendorf [Tue, 6 Jan 2009 00:09:21 +0000 (16:09 -0800)]
Add DTRACE_PROBE(a)

15 years agoStub u8_textprep.h for inclusion purposes
Brian Behlendorf [Mon, 5 Jan 2009 23:37:07 +0000 (15:37 -0800)]
Stub u8_textprep.h for inclusion purposes

15 years agoAdd system taskq support
Brian Behlendorf [Mon, 5 Jan 2009 23:08:03 +0000 (15:08 -0800)]
Add system taskq support

15 years agoRemove u8_textprep, we will not be implementing this nightmare yet
Brian Behlendorf [Mon, 5 Jan 2009 19:32:08 +0000 (11:32 -0800)]
Remove u8_textprep, we will not be implementing this nightmare yet

15 years agoInclude the header
Brian Behlendorf [Wed, 24 Dec 2008 00:48:15 +0000 (16:48 -0800)]
Include the header

15 years agoAdd sys/thread.h
Brian Behlendorf [Wed, 24 Dec 2008 00:27:36 +0000 (16:27 -0800)]
Add sys/thread.h

15 years agoDefine needfree
Brian Behlendorf [Tue, 23 Dec 2008 23:59:36 +0000 (15:59 -0800)]
Define needfree

15 years agoAdd timer.h header
Brian Behlendorf [Tue, 23 Dec 2008 23:40:20 +0000 (15:40 -0800)]
Add timer.h header

15 years agoAdd u8 stub
Brian Behlendorf [Tue, 23 Dec 2008 23:38:15 +0000 (15:38 -0800)]
Add u8 stub

15 years agoMove sunddi include
Brian Behlendorf [Tue, 23 Dec 2008 21:32:07 +0000 (13:32 -0800)]
Move sunddi include

15 years agoAdd sunddi to uio
Brian Behlendorf [Tue, 23 Dec 2008 21:30:04 +0000 (13:30 -0800)]
Add sunddi to uio

15 years agoMinor updates
Brian Behlendorf [Tue, 23 Dec 2008 21:25:52 +0000 (13:25 -0800)]
Minor updates

15 years agoPull in lock types
Brian Behlendorf [Tue, 23 Dec 2008 21:18:39 +0000 (13:18 -0800)]
Pull in lock types

15 years agoAdd header
Brian Behlendorf [Tue, 23 Dec 2008 21:05:50 +0000 (13:05 -0800)]
Add header

15 years agoAdd a few more missing header which the upstream stock kernel context expects
Brian Behlendorf [Tue, 23 Dec 2008 21:03:09 +0000 (13:03 -0800)]
Add a few more missing header which the upstream stock kernel context expects

15 years agoAdd struct ddi_strtox functions
Brian Behlendorf [Sat, 6 Dec 2008 00:23:57 +0000 (16:23 -0800)]
Add struct ddi_strtox functions

15 years agoRefresh
Brian Behlendorf [Sat, 6 Dec 2008 00:20:09 +0000 (16:20 -0800)]
Refresh

15 years agoPrefix META_ALIAS with SPL_
Brian Behlendorf [Wed, 26 Nov 2008 21:26:05 +0000 (13:26 -0800)]
Prefix META_ALIAS with SPL_

15 years agoPrefix all META_* #defines with SPL to prevent colisions which include our spl_config...
Brian Behlendorf [Wed, 26 Nov 2008 21:09:37 +0000 (13:09 -0800)]
Prefix all META_* #defines with SPL to prevent colisions which include our spl_config.h.  Dependent packages may do this to leverage the autoconf check we have already run aganst the kernel.

15 years agoRebase on Git from SVN as of version 0.4.0.
Brian Behlendorf [Wed, 26 Nov 2008 17:57:29 +0000 (09:57 -0800)]
Rebase on Git from SVN as of version 0.4.0.

15 years agoTag spl-0.3.5
behlendo [Wed, 26 Nov 2008 17:44:40 +0000 (17:44 +0000)]
Tag spl-0.3.5

git-svn-id: https://outreach.scidac.gov/svn/spl/tags/spl-0.3.5@184 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd libtool script
behlendo [Wed, 26 Nov 2008 17:43:44 +0000 (17:43 +0000)]
Add libtool script

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@183 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd missing autogen products
behlendo [Wed, 26 Nov 2008 17:07:59 +0000 (17:07 +0000)]
Add missing autogen products

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@182 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoInclude META file support.
behlendo [Wed, 26 Nov 2008 17:01:45 +0000 (17:01 +0000)]
Include META file support.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@181 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years ago* : Add autogen.sh products.
behlendo [Mon, 24 Nov 2008 23:49:18 +0000 (23:49 +0000)]
* : Add autogen.sh products.

* configure.ac : Use AC_CONFIG_AUX_DIR to put autoconf products
in ./auotconf.

* autogen.sh : Use --copy to avoid symlinks, remove error
redirection, run aclocal before libtoolize.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@180 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years ago* include/sys/sunddi.h, modules/spl/spl-module.c : Removed default
behlendo [Thu, 13 Nov 2008 21:43:30 +0000 (21:43 +0000)]
* include/sys/sunddi.h, modules/spl/spl-module.c : Removed default
udev support from sunddi implementation because it uses GPL-only
symbols.  This support is optionally available for SPL consumers
if they define HAVE_GPL_ONLY_SYMBOLS and license their module as
GPL using the MODULE_LICENSE("GPL") macro.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@179 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoPrep for spl-0.3.4 tag.
behlendo [Thu, 6 Nov 2008 00:51:31 +0000 (00:51 +0000)]
Prep for spl-0.3.4 tag.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@177 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoRemove 3 instances of unused variables.
behlendo [Wed, 5 Nov 2008 22:06:56 +0000 (22:06 +0000)]
Remove 3 instances of unused variables.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@176 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd proper error handling for the case where a thread can not be
behlendo [Wed, 5 Nov 2008 21:43:37 +0000 (21:43 +0000)]
Add proper error handling for the case where a thread can not be
created.  Instead of asserting we simply abort the test, wait for
any tasks we created to finish, and return -ESRCH back to the user
space component.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@175 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoSlightly increase SPLAT_NAME_SIZE to ensure string is always
behlendo [Wed, 5 Nov 2008 21:27:31 +0000 (21:27 +0000)]
Slightly increase SPLAT_NAME_SIZE to ensure string is always
NULL terminated.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@174 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoFix a small corner case in the test infrastructure where
behlendo [Tue, 4 Nov 2008 23:38:29 +0000 (23:38 +0000)]
Fix a small corner case in the test infrastructure where
we might end up with a non-NULL terminated buffer if the
test name or desc is too long.  Only copy N-1 bytes.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@173 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years ago3 minor fixups where sprintf() was used instead of snprintf() with
behlendo [Tue, 4 Nov 2008 23:30:15 +0000 (23:30 +0000)]
3 minor fixups where sprintf() was used instead of snprintf() with
a known max length.  Additionally the function return value is cast
to void to make it explicit that the value is not needed.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@172 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoRemoved useless check
behlendo [Tue, 4 Nov 2008 23:18:31 +0000 (23:18 +0000)]
Removed useless check

Fix forward NULL in splat kmem_cache test ctors/dtors

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@171 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd missing error handling to this case where a memory allocation fails.
behlendo [Tue, 4 Nov 2008 22:51:31 +0000 (22:51 +0000)]
Add missing error handling to this case where a memory allocation fails.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@170 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoSimple ignore the return type which was never used here and cast it to void.
behlendo [Tue, 4 Nov 2008 22:42:58 +0000 (22:42 +0000)]
Simple ignore the return type which was never used here and cast it to void.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@169 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd proper error handling to one of the atomic test cases in the event
behlendo [Tue, 4 Nov 2008 22:39:29 +0000 (22:39 +0000)]
Add proper error handling to one of the atomic test cases in the event
that a kernel thread cannot be properly spawned.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@168 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd missing initializer which is needed in an unlikely error case.
behlendo [Tue, 4 Nov 2008 22:24:55 +0000 (22:24 +0000)]
Add missing initializer which is needed in an unlikely error case.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@167 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoEnsure GPL-only symbols are re-exported as GPL-only
behlendo [Tue, 4 Nov 2008 00:00:16 +0000 (00:00 +0000)]
Ensure GPL-only symbols are re-exported as GPL-only

Remove GPL-only symbol from __gethrtime()

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@166 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years ago* spl-09-fix-kmem-track-oops.patch
behlendo [Mon, 3 Nov 2008 22:02:15 +0000 (22:02 +0000)]
* spl-09-fix-kmem-track-oops.patch
This fixes an oops when unloading the modules, in the case where memory
tracking was enabled and there were memory leaks. The comment in the
code explains what was the problem.

* spl-10-fix-assert-verify-ndebug.patch
This fixes ASSERT*() and VERIFY*() macros in non-debug builds. VERIFY*()
macros are supposed to check the condition and panic even in production
builds, and ASSERT*() macros don't need to evaluate the arguments.
Also some 32-bit fixes.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@165 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoUnder Solaris KM_SLEEP ensures success (or at least you hang forever).
behlendo [Mon, 3 Nov 2008 21:51:33 +0000 (21:51 +0000)]
Under Solaris KM_SLEEP ensures success (or at least you hang forever).
That said when working with a finite resource like memory failure really
is always a possibility.  It would be far better longer term if the ZFS
code could be weened off this assumption and properly handle the cases
where an allocation fails.  Still I've applied the patch to spl-0.3.4
since this layer is supposed to emulate Solaris as closely as possible.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@164 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoAdd a SPL_AC_TYPE_ATOMIC64_T test to configure for systems which do
behlendo [Mon, 3 Nov 2008 21:06:04 +0000 (21:06 +0000)]
Add a SPL_AC_TYPE_ATOMIC64_T test to configure for systems which do
already supprt atomic64_t types.

* spl-07-kmem-cleanup.patch
This moves all the debugging code from sys/kmem.h to spl-kmem.c, because
the huge macros were hard to debug and were bloating functions that
allocated memory. I also fixed some other minor problems, including
32-bit fixes and a reported memory leak which was just due to using the
wrong free function.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@163 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoApply two nice improvements caught by Ricardo,
behlendo [Mon, 3 Nov 2008 20:34:17 +0000 (20:34 +0000)]
Apply two nice improvements caught by Ricardo,

spl-05-div64.patch
This is a much less intrusive fix for undefined 64-bit division symbols
when compiling the DMU in 32-bit kernels.

* spl-06-atomic64.patch
This is a workaround for 32-bit kernels that don't have atomic64_t.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@162 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoApply a nice fix caught by Ricardo,
behlendo [Mon, 3 Nov 2008 20:21:08 +0000 (20:21 +0000)]
Apply a nice fix caught by Ricardo,

* spl-04-fix-taskq-spinlock-lockup.patch
Fixes a deadlock in the BIO completion handler, due to the taskq code
prematurely re-enabling interrupts when another spinlock had disabled
them in the IDE IRQ handler.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@161 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoReviewed and applied spl-01-rm-gpl-symbol-set_cpus_allowed.patch
behlendo [Mon, 3 Nov 2008 20:07:20 +0000 (20:07 +0000)]
Reviewed and applied spl-01-rm-gpl-symbol-set_cpus_allowed.patch
from Ricardo which removes a dependency on the GPL-only symbol
set_cpus_allowed().  Using this symbol is simpler but in the name
of portability we are adopting a spinlock based solution here
to remove this dependency.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@160 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

15 years agoReviewed and applied spl-00-rm-gpl-symbol-notifier_chain.patch
behlendo [Mon, 3 Nov 2008 19:53:23 +0000 (19:53 +0000)]
Reviewed and applied spl-00-rm-gpl-symbol-notifier_chain.patch
from Ricardo which removes a dependency on the GPL-only symbol
needed for a panic time notifier.  This funcationality was never
used and this improves our portability.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@159 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoMinor tweak to handle systems with restrictive udev rules
behlendo [Tue, 12 Aug 2008 05:18:41 +0000 (05:18 +0000)]
Minor tweak to handle systems with restrictive udev rules
or older systems which are not using udev at all.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@158 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoSigh more compat fixes, this is almost right for 2.6.9 - 2.6.26 kernels.
behlendo [Mon, 11 Aug 2008 23:47:44 +0000 (23:47 +0000)]
Sigh more compat fixes, this is almost right for 2.6.9 - 2.6.26 kernels.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@157 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoPull in initial 32-bit support patches.
behlendo [Mon, 11 Aug 2008 22:42:04 +0000 (22:42 +0000)]
Pull in initial 32-bit support patches.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@156 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoCommit bulk of remaining 2.6.9 and 2.6.26 compat changes.
behlendo [Mon, 11 Aug 2008 22:13:47 +0000 (22:13 +0000)]
Commit bulk of remaining 2.6.9 and 2.6.26 compat changes.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@155 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoInclude linux/uaccess.h compat changes.
behlendo [Mon, 11 Aug 2008 19:10:14 +0000 (19:10 +0000)]
Include linux/uaccess.h compat changes.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@154 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoMore 2.6.26 compat changes
behlendo [Mon, 11 Aug 2008 17:56:40 +0000 (17:56 +0000)]
More 2.6.26 compat changes

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@153 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoPull in timespec, list, and type compat changes to support
behlendo [Mon, 11 Aug 2008 17:20:11 +0000 (17:20 +0000)]
Pull in timespec, list, and type compat changes to support
building against a wider range of kernels.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@152 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoResolve incomplete type when building against 2.6.26
behlendo [Mon, 11 Aug 2008 16:11:37 +0000 (16:11 +0000)]
Resolve incomplete type when building against 2.6.26

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@151 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoAdd class / device portability code. Two autoconf tests
behlendo [Sun, 10 Aug 2008 03:50:36 +0000 (03:50 +0000)]
Add class / device portability code.  Two autoconf tests
were added to cover the 3 possible APIs from 2.6.9 to
2.6.26.  We attempt to use the newest interfaces and if
not available fallback to the oldest.  This a rework of
some changes proposed by Ricardo for RHEL4.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@150 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoPull in fls64 compat changes from spl-00-rhel4-compat.patch,
behlendo [Wed, 6 Aug 2008 04:52:39 +0000 (04:52 +0000)]
Pull in fls64 compat changes from spl-00-rhel4-compat.patch,
to allow greater compatibility with kernels pre 2.6.16.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@149 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoStart bringing in Ricardo's spl-00-rhel4-compat.patch, a few chunks
behlendo [Tue, 5 Aug 2008 04:16:09 +0000 (04:16 +0000)]
Start bringing in Ricardo's spl-00-rhel4-compat.patch, a few chunks
at a time as I audit it.  This chunk finishes moving the SPL entirely
off the linux slab on to the SPL implementation.  It differs slightly
from the proposed version in that the spl continues to export to
all the Solaris types and functions.  These do conflict with the
Linux slab so a module usings these interfaces must not include the
SPL slab if they also intend to use the linux slab.  Or they must
explcitly #undef the macros which remap the functioin to their
spl_* equivilants.

A nice side of effect of dropping the entire linux slab is we
don't need to autoconf checks anymore.  They kept messing with
the slab API endlessly!

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@148 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoApply Ricardo's spl-02-condvar-poison.patch
behlendo [Mon, 4 Aug 2008 23:59:08 +0000 (23:59 +0000)]
Apply Ricardo's spl-02-condvar-poison.patch
Fix too early memory poisoning on condvars.

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@147 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoTrivial commit to remove whitespace
behlendo [Wed, 9 Jul 2008 19:11:29 +0000 (19:11 +0000)]
Trivial commit to remove whitespace

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@146 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoFix race in kmem_locking test
behlendo [Mon, 7 Jul 2008 22:15:04 +0000 (22:15 +0000)]
Fix race in kmem_locking test
Reduce max memory usage for kmem_locking tests (for low memory machines)

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@145 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c

16 years agoTwo easy fixes I caught with debug enabled
behlendo [Tue, 1 Jul 2008 04:06:09 +0000 (04:06 +0000)]
Two easy fixes I caught with debug enabled

git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@143 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c