Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
0aca86cd
Commit
0aca86cd
authored
Aug 27, 2012
by
Antonio Quartulli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
batman-adv: add kernel-doc for enum batadv_dbg_level
Signed-off-by:
Antonio Quartulli
<
ordex@autistici.org
>
parent
7f91d06c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
net/batman-adv/main.h
net/batman-adv/main.h
+11
-4
No files found.
net/batman-adv/main.h
View file @
0aca86cd
...
...
@@ -165,12 +165,19 @@ int batadv_algo_register(struct batadv_algo_ops *bat_algo_ops);
int
batadv_algo_select
(
struct
batadv_priv
*
bat_priv
,
char
*
name
);
int
batadv_algo_seq_print_text
(
struct
seq_file
*
seq
,
void
*
offset
);
/* all messages related to routing / flooding / broadcasting / etc */
/**
* enum batadv_dbg_level - available log levels
* @BATADV_DBG_BATMAN: OGM and TQ computations related messages
* @BATADV_DBG_ROUTES: route added / changed / deleted
* @BATADV_DBG_TT: translation table messages
* @BATADV_DBG_BLA: bridge loop avoidance messages
* @BATADV_DBG_ALL: the union of all the above log levels
*/
enum
batadv_dbg_level
{
BATADV_DBG_BATMAN
=
BIT
(
0
),
BATADV_DBG_ROUTES
=
BIT
(
1
),
/* route added / changed / deleted */
BATADV_DBG_TT
=
BIT
(
2
),
/* translation table operations */
BATADV_DBG_BLA
=
BIT
(
3
),
/* bridge loop avoidance */
BATADV_DBG_ROUTES
=
BIT
(
1
),
BATADV_DBG_TT
=
BIT
(
2
),
BATADV_DBG_BLA
=
BIT
(
3
),
BATADV_DBG_ALL
=
15
,
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment