aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md/dm-hw-handler.h
diff options
context:
space:
mode:
authorEdward Goggin <egoggin@emc.com>2007-05-09 05:32:56 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-09 15:30:46 -0400
commit79eb885c96b5ccf8bbffd0dddc4c15a5dd436a1c (patch)
tree1bae1cea97907415f19a0009aaa8e11e63fef34c /drivers/md/dm-hw-handler.h
parent46b477306afcd0516924b26792c7a42f4dbfa9f0 (diff)
dm mpath: log device name
Make the mapped device structure accessible to hardware handlers so error messages can include the device name. Signed-off-by: Edward Goggin <egoggin@emc.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/dm-hw-handler.h')
-rw-r--r--drivers/md/dm-hw-handler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/dm-hw-handler.h b/drivers/md/dm-hw-handler.h
index 32eff28e4adc..e0832e6fcf36 100644
--- a/drivers/md/dm-hw-handler.h
+++ b/drivers/md/dm-hw-handler.h
@@ -16,6 +16,7 @@
16struct hw_handler_type; 16struct hw_handler_type;
17struct hw_handler { 17struct hw_handler {
18 struct hw_handler_type *type; 18 struct hw_handler_type *type;
19 struct mapped_device *md;
19 void *context; 20 void *context;
20}; 21};
21 22