summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiroslav Benes <mbenes@suse.cz>2019-05-07 09:08:14 -0400
committerJiri Kosina <jkosina@suse.cz>2019-05-09 11:21:06 -0400
commitaec71d794731c441a9b7ee9705efedd2f6054173 (patch)
tree8adcecfff0cb5797f776ad69ea66a73335aa2160
parent573de2a6e844cb230c4483833f29b8344a6a17cc (diff)
livepatch: Remove stale kobj_added entries from kernel-doc descriptions
Commit 4d141ab3416d ("livepatch: Remove custom kobject state handling") removed kobj_added members of klp_func, klp_object and klp_patch structures. kernel-doc descriptions were omitted by accident. Remove them. Reported-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> Signed-off-by: Miroslav Benes <mbenes@suse.cz> Acked-by: Joe Lawrence <joe.lawrence@redhat.com> Reviewed-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--include/linux/livepatch.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h
index a14bab1a0a3e..955d46f37b72 100644
--- a/include/linux/livepatch.h
+++ b/include/linux/livepatch.h
@@ -47,7 +47,6 @@
47 * @stack_node: list node for klp_ops func_stack list 47 * @stack_node: list node for klp_ops func_stack list
48 * @old_size: size of the old function 48 * @old_size: size of the old function
49 * @new_size: size of the new function 49 * @new_size: size of the new function
50 * @kobj_added: @kobj has been added and needs freeing
51 * @nop: temporary patch to use the original code again; dyn. allocated 50 * @nop: temporary patch to use the original code again; dyn. allocated
52 * @patched: the func has been added to the klp_ops list 51 * @patched: the func has been added to the klp_ops list
53 * @transition: the func is currently being applied or reverted 52 * @transition: the func is currently being applied or reverted
@@ -125,7 +124,6 @@ struct klp_callbacks {
125 * @node: list node for klp_patch obj_list 124 * @node: list node for klp_patch obj_list
126 * @mod: kernel module associated with the patched object 125 * @mod: kernel module associated with the patched object
127 * (NULL for vmlinux) 126 * (NULL for vmlinux)
128 * @kobj_added: @kobj has been added and needs freeing
129 * @dynamic: temporary object for nop functions; dynamically allocated 127 * @dynamic: temporary object for nop functions; dynamically allocated
130 * @patched: the object's funcs have been added to the klp_ops list 128 * @patched: the object's funcs have been added to the klp_ops list
131 */ 129 */
@@ -152,7 +150,6 @@ struct klp_object {
152 * @list: list node for global list of actively used patches 150 * @list: list node for global list of actively used patches
153 * @kobj: kobject for sysfs resources 151 * @kobj: kobject for sysfs resources
154 * @obj_list: dynamic list of the object entries 152 * @obj_list: dynamic list of the object entries
155 * @kobj_added: @kobj has been added and needs freeing
156 * @enabled: the patch is enabled (but operation may be incomplete) 153 * @enabled: the patch is enabled (but operation may be incomplete)
157 * @forced: was involved in a forced transition 154 * @forced: was involved in a forced transition
158 * @free_work: patch cleanup from workqueue-context 155 * @free_work: patch cleanup from workqueue-context