diff options
author | Antonio Quartulli <ordex@autistici.org> | 2011-04-26 12:26:01 -0400 |
---|---|---|
committer | Sven Eckelmann <sven@narfation.org> | 2011-06-20 05:37:33 -0400 |
commit | c6bda689c2c94788e1e567463ce861d1f135857f (patch) | |
tree | b2876d0b57ee5de081cf612420644e39dc4b78c0 /net/batman-adv/main.h | |
parent | 7683fdc1e88644ee8108a1f33faba80545f0024d (diff) |
batman-adv: add wrapper function to throw uevent in userspace
Using throw_uevent() is now possible to trigger uevent signal that can
be recognised in userspace. Uevents will be triggered through the
/devices/virtual/net/{MESH_IFACE} kobject.
A triggered uevent has three properties:
- type: the event class. Who generates the event (only 'gw' is currently
defined). Corresponds to the BATTYPE uevent variable.
- action: the associated action with the event ('add'/'change'/'del' are
currently defined). Corresponds to the BATACTION uevent variable.
- data: any useful data for the userspace. Corresponds to the BATDATA
uevent variable.
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/main.h')
-rw-r--r-- | net/batman-adv/main.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index 8eae05e4dc1b..f9e0e174b3f6 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h | |||
@@ -91,6 +91,17 @@ enum mesh_state { | |||
91 | #define BCAST_QUEUE_LEN 256 | 91 | #define BCAST_QUEUE_LEN 256 |
92 | #define BATMAN_QUEUE_LEN 256 | 92 | #define BATMAN_QUEUE_LEN 256 |
93 | 93 | ||
94 | |||
95 | enum uev_action { | ||
96 | UEV_ADD = 0, | ||
97 | UEV_DEL, | ||
98 | UEV_CHANGE | ||
99 | }; | ||
100 | |||
101 | enum uev_type { | ||
102 | UEV_GW = 0 | ||
103 | }; | ||
104 | |||
94 | /* | 105 | /* |
95 | * Debug Messages | 106 | * Debug Messages |
96 | */ | 107 | */ |