Skip to content

Commit

Permalink
ematch: simpler tcf_em_unregister()
Browse files Browse the repository at this point in the history
Simply delete ops from list and let list debugging do the job.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Alexey Dobriyan authored and David S. Miller committed Nov 17, 2008
1 parent 6eba6a3 commit 4d24b52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
2 changes: 1 addition & 1 deletion include/net/pkt_cls.h
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ struct tcf_ematch_ops
};

extern int tcf_em_register(struct tcf_ematch_ops *);
extern int tcf_em_unregister(struct tcf_ematch_ops *);
extern void tcf_em_unregister(struct tcf_ematch_ops *);
extern int tcf_em_tree_validate(struct tcf_proto *, struct nlattr *,
struct tcf_ematch_tree *);
extern void tcf_em_tree_destroy(struct tcf_proto *, struct tcf_ematch_tree *);
Expand Down
18 changes: 3 additions & 15 deletions net/sched/ematch.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
*
* static void __exit exit_my_ematch(void)
* {
* return tcf_em_unregister(&my_ops);
* tcf_em_unregister(&my_ops);
* }
*
* module_init(init_my_ematch);
Expand Down Expand Up @@ -154,23 +154,11 @@ EXPORT_SYMBOL(tcf_em_register);
*
* Returns -ENOENT if no matching ematch was found.
*/
int tcf_em_unregister(struct tcf_ematch_ops *ops)
void tcf_em_unregister(struct tcf_ematch_ops *ops)
{
int err = 0;
struct tcf_ematch_ops *e;

write_lock(&ematch_mod_lock);
list_for_each_entry(e, &ematch_ops, link) {
if (e == ops) {
list_del(&e->link);
goto out;
}
}

err = -ENOENT;
out:
list_del(&ops->link);
write_unlock(&ematch_mod_lock);
return err;
}
EXPORT_SYMBOL(tcf_em_unregister);

Expand Down

0 comments on commit 4d24b52

Please sign in to comment.