diff options
author | Jiri Slaby <jslaby@suse.cz> | 2015-05-19 06:01:19 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-05-19 17:58:43 -0400 |
commit | 8cdd043ab32c2ff28d2a77c514a768a9edce244c (patch) | |
tree | 532e856e533309a4b22f22adadc31c5e45672252 /include/linux/livepatch.h | |
parent | cad706df7e4a00a595f2662f32c0fc174aa4e61f (diff) |
livepatch: introduce patch/func-walking helpers
klp_for_each_object and klp_for_each_func are now used all over the
code. One need not think what is the proper condition to check in the
for loop now.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Acked-by: Josh Poimboeuf <jpoimboe@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/livepatch.h')
-rw-r--r-- | include/linux/livepatch.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h index fe45f2f02c8d..31db7a05dd36 100644 --- a/include/linux/livepatch.h +++ b/include/linux/livepatch.h | |||
@@ -123,6 +123,12 @@ struct klp_patch { | |||
123 | enum klp_state state; | 123 | enum klp_state state; |
124 | }; | 124 | }; |
125 | 125 | ||
126 | #define klp_for_each_object(patch, obj) \ | ||
127 | for (obj = patch->objs; obj->funcs; obj++) | ||
128 | |||
129 | #define klp_for_each_func(obj, func) \ | ||
130 | for (func = obj->funcs; func->old_name; func++) | ||
131 | |||
126 | int klp_register_patch(struct klp_patch *); | 132 | int klp_register_patch(struct klp_patch *); |
127 | int klp_unregister_patch(struct klp_patch *); | 133 | int klp_unregister_patch(struct klp_patch *); |
128 | int klp_enable_patch(struct klp_patch *); | 134 | int klp_enable_patch(struct klp_patch *); |