dm-mpath.h

来自「linux 内核源代码」· C头文件 代码 · 共 26 行

H
26
字号
/* * Copyright (C) 2004 Red Hat, Inc. All rights reserved. * * This file is released under the GPL. * * Multipath. */#ifndef	DM_MPATH_H#define	DM_MPATH_Hstruct dm_dev;struct dm_path {	struct dm_dev *dev;	/* Read-only */	unsigned is_active;	/* Read-only */	void *pscontext;	/* For path-selector use */	void *hwhcontext;	/* For hw-handler use */};/* Callback for hwh_pg_init_fn to use when complete */void dm_pg_init_complete(struct dm_path *path, unsigned err_flags);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?