diff options
author | Arjan van de Ven <arjan@infradead.org> | 2005-11-28 10:22:25 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-12-13 20:11:01 -0500 |
commit | 0ad78200baf1f85a21e6b26c225717ad80980d8f (patch) | |
tree | 7f5ffcd60c5bb1dd9a2ef943b2b0950bd5ac5b55 /drivers/scsi/raid_class.c | |
parent | ce155ccecd4094e7b5e68058d26db691713240fc (diff) |
[SCSI] Mark some core scsi data structures const
patch below marks a few scsi core datastructures as const, so that they end up
in the .rodata section and don't cacheline share with things that get dirtied
Signed-off-by: Arjan van de Ven <arjan@infradead.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/raid_class.c')
-rw-r--r-- | drivers/scsi/raid_class.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/raid_class.c b/drivers/scsi/raid_class.c index 5b1c12041a4f..5ec5f44602ac 100644 --- a/drivers/scsi/raid_class.c +++ b/drivers/scsi/raid_class.c | |||
@@ -115,7 +115,7 @@ static DECLARE_TRANSPORT_CLASS(raid_class, | |||
115 | raid_remove, | 115 | raid_remove, |
116 | NULL); | 116 | NULL); |
117 | 117 | ||
118 | static struct { | 118 | static const struct { |
119 | enum raid_state value; | 119 | enum raid_state value; |
120 | char *name; | 120 | char *name; |
121 | } raid_states[] = { | 121 | } raid_states[] = { |