- more 2.6.17 port work (still does not build)
[linux-flexiantxendom0-3.2.10.git] / drivers / md / dm-netlink.h
1 /*
2  * Device Mapper Netlink Support
3  *
4  * Copyright (C) 2005 IBM Corporation
5  *      Author: Mike Anderson <andmike@us.ibm.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  *
21  */
22 #ifndef DM_NETLINK_H
23 #define DM_NETLINK_H
24
25 struct dm_evt {
26         struct list_head zlist;
27         struct list_head elist;
28         struct sk_buff *skb;
29 };
30
31 #ifdef CONFIG_DM_NL_EVT
32 void dm_send_evt(struct dm_evt *);
33 struct dm_evt *dm_path_fail_evt(char*, int);
34 struct dm_evt *dm_path_reinstate_evt(char*, int);
35 int dm_nl_init(void);
36 void dm_nl_exit(void);
37 #else
38 static inline void dm_send_evt(struct dm_evt *evt)
39 {
40 }
41 static inline struct dm_evt *dm_path_fail_evt(char* dm_name, int
42                                               nr_valid_paths)
43 {
44         return NULL;
45 }
46 static inline struct dm_evt *dm_path_reinstate_evt(char* dm_name, int
47                                                    nr_valid_paths)
48 {
49         return NULL;
50 }
51 static inline int __init dm_nl_init(void)
52 {
53         return 0;
54 }
55 static inline void dm_nl_exit(void)
56 {
57 }
58 #endif
59
60 #endif /* DM_NETLINK_H */