summaryrefslogtreecommitdiff
path: root/include/linux/raid
diff options
context:
space:
mode:
authorNeil Brown <neilb@cse.unsw.edu.au>2002-05-17 22:03:19 -0700
committerChristoph Hellwig <hch@sb.bsdonline.org>2002-05-17 22:03:19 -0700
commit7d684b93efe0a64d557223a89429501b9c4e5c90 (patch)
tree5c6f90fbe056a4e99415c721e3db1f6bf9bf3b42 /include/linux/raid
parentbd415ca2e54b2b305aa4b3a9bec2bf67c3bedcbf (diff)
[PATCH] Tidy up raid5 code
- remove md_ prefix from some calls that used to be defined in md_compatability.h - remove "raid5_" prefix from some static functions, in line with recent changes to raid1.c ?? should cpu_has_mmx be moved to in processor.h ?
Diffstat (limited to 'include/linux/raid')
-rw-r--r--include/linux/raid/raid5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/raid/raid5.h b/include/linux/raid/raid5.h
index 5b4a005e3403..d3485daeb0f1 100644
--- a/include/linux/raid/raid5.h
+++ b/include/linux/raid/raid5.h
@@ -215,11 +215,11 @@ struct raid5_private_data {
*/
atomic_t active_stripes;
struct list_head inactive_list;
- md_wait_queue_head_t wait_for_stripe;
+ wait_queue_head_t wait_for_stripe;
int inactive_blocked; /* release of inactive stripes blocked,
* waiting for 25% to be free
*/
- md_spinlock_t device_lock;
+ spinlock_t device_lock;
int plugged;
struct tq_struct plug_tq;