diff options
author | Kiyoshi Ueda <k-ueda@ct.jp.nec.com> | 2008-10-10 13:36:58 +0100 |
---|---|---|
committer | Alasdair G Kergon <agk@redhat.com> | 2008-10-10 13:36:58 +0100 |
commit | 6680073d3ec7c6dbdbf77870bf1fea869767d779 (patch) | |
tree | 3e5417645e04b4e33feaec38e73f2e54509d16d0 /drivers/md/dm-mpath.h | |
parent | 01460f3520c100010aacc8f8500cafcb17ce4665 (diff) | |
download | linux-6680073d3ec7c6dbdbf77870bf1fea869767d779.tar.gz linux-6680073d3ec7c6dbdbf77870bf1fea869767d779.tar.bz2 linux-6680073d3ec7c6dbdbf77870bf1fea869767d779.zip |
dm mpath: remove is_active from struct dm_path
This patch moves 'is_active' from struct dm_path to struct pgpath
as it does not need exporting.
Signed-off-by: Kiyoshi Ueda <k-ueda@ct.jp.nec.com>
Signed-off-by: Jun'ichi Nomura <j-nomura@ce.jp.nec.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Diffstat (limited to 'drivers/md/dm-mpath.h')
-rw-r--r-- | drivers/md/dm-mpath.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/md/dm-mpath.h b/drivers/md/dm-mpath.h index c198b856a452..e230f7196259 100644 --- a/drivers/md/dm-mpath.h +++ b/drivers/md/dm-mpath.h @@ -13,8 +13,6 @@ struct dm_dev; struct dm_path { struct dm_dev *dev; /* Read-only */ - unsigned is_active; /* Read-only */ - void *pscontext; /* For path-selector use */ }; |