83ee6b2729
[ Upstream commit 86a3238c7b9b759cb864f4f768ab2e24687dc0e6 ] Signed-off-by: Heinz Mauelshagen <heinzm@redhat.com> Signed-off-by: Mike Snitzer <snitzer@kernel.org> Stable-dep-of: f7b58a69fad9 ("dm: fix improper splitting for abnormal bios") Signed-off-by: Sasha Levin <sashal@kernel.org>
23 lines
419 B
C
23 lines
419 B
C
/*
|
|
* Copyright (C) 2004 Red Hat, Inc. All rights reserved.
|
|
*
|
|
* This file is released under the GPL.
|
|
*
|
|
* Multipath.
|
|
*/
|
|
|
|
#ifndef DM_MPATH_H
|
|
#define DM_MPATH_H
|
|
|
|
struct dm_dev;
|
|
|
|
struct dm_path {
|
|
struct dm_dev *dev; /* Read-only */
|
|
void *pscontext; /* For path-selector use */
|
|
};
|
|
|
|
/* Callback for hwh_pg_init_fn to use when complete */
|
|
void dm_pg_init_complete(struct dm_path *path, unsigned int err_flags);
|
|
|
|
#endif
|