aboutsummaryrefslogtreecommitdiffstats
path: root/patches
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2009-09-18 16:09:47 -0700
committerBrian Behlendorf <[email protected]>2009-09-18 16:09:47 -0700
commite811949a57044d60d12953c5c3b808a79a7d36ef (patch)
treef794a00a61e29c35db58e9ad183b9850fc381a0f /patches
parent73358d5a1dc6278fd20eed0a9872c0b1572caacc (diff)
Reimplement rwlocks for Linux lock profiling/analysis.
It turns out that the previous rwlock implementation worked well but did not integrate properly with the upstream kernel lock profiling/ analysis tools. This is a major problem since it would be awfully nice to be able to use the automatic lock checker and profiler. The problem is that the upstream lock tools use the pre-processor to create a lock class for each uniquely named locked. Since the rwsem was embedded in a wrapper structure the name was always the same. The effect was that we only ended up with one lock class for the entire SPL which caused the lock dependency checker to flag nearly everything as a possible deadlock. The solution was to directly map a krwlock to a Linux rwsem using a typedef there by eliminating the wrapper structure. This was not done initially because the rwsem implementation is specific to the arch. To fully implement the Solaris krwlock API using only the provided rwsem API is not possible. It can only be done by directly accessing some of the internal data member of the rwsem structure. For example, the Linux API provides a different function for dropping a reader vs writer lock. Whereas the Solaris API uses the same function and the caller does not pass in what type of lock it is. This means to properly drop the lock we need to determine if the lock is currently a reader or writer lock. Then we need to call the proper Linux API function. Unfortunately, there is no provided API for this so we must extracted this information directly from arch specific lock implementation. This is all do able, and what I did, but it does complicate things considerably. The good news is that in addition to the profiling benefits of this change. We may see performance improvements due to slightly reduced overhead when creating rwlocks and manipulating them. The only function I was forced to sacrafice was rw_owner() because this information is simply not stored anywhere in the rwsem. Luckily this appears not to be a commonly used function on Solaris, and it is my understanding it is mainly used for debugging anyway. In addition to the core rwlock changes, extensive updates were made to the rwlock regression tests. Each class of test was extended to provide more API coverage and to be more rigerous in checking for misbehavior. This is a pretty significant change and with that in mind I have been careful to validate it on several platforms before committing. The full SPLAT regression test suite was run numberous times on all of the following platforms. This includes various kernels ranging from 2.6.16 to 2.6.29. - SLES10 (ppc64) - SLES11 (x86_64) - CHAOS4.2 (x86_64) - RHEL5.3 (x86_64) - RHEL6 (x86_64) - FC11 (x86_64)
Diffstat (limited to 'patches')
-rw-r--r--patches/fc11-spl-export-symbols.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/patches/fc11-spl-export-symbols.patch b/patches/fc11-spl-export-symbols.patch
index 726aabddc..c9d3ec880 100644
--- a/patches/fc11-spl-export-symbols.patch
+++ b/patches/fc11-spl-export-symbols.patch
@@ -92,3 +92,15 @@ index f5b7d17..1468a22 100644
static inline int zref_in_nodemask(struct zoneref *zref, nodemask_t *nodes)
{
+diff --git a/kernel/fork.c b/kernel/fork.c
+index 9b42695..852499e 100644
+--- a/kernel/fork.c
++++ b/kernel/fork.c
+@@ -159,6 +159,7 @@ void __put_task_struct(struct task_struct *tsk)
+ if (!profile_handoff_task(tsk))
+ free_task(tsk);
+ }
++EXPORT_SYMBOL(__put_task_struct);
+
+ /*
+ * macro override instead of weak attribute alias, to workaround