]> git.ipfire.org Git - thirdparty/kmod.git/commitdiff
Add comment in public header about flags not implemented
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 15 Dec 2011 14:27:45 +0000 (12:27 -0200)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Thu, 15 Dec 2011 14:27:45 +0000 (12:27 -0200)
libkmod/libkmod.h

index a8142f5bfe31f64c4faed5e76886078bffeaf962..d9169d9c2a9c063fb9f5bb37164bd0cf88ca38fa 100644 (file)
@@ -67,11 +67,13 @@ struct kmod_list *kmod_list_prev(const struct kmod_list *first_entry,
                list_entry != NULL; \
                list_entry = kmod_list_next(first_entry, list_entry))
 
+/* Removal flags, not implemented yet */
 enum kmod_remove {
        KMOD_REMOVE_FORCE = O_TRUNC,
        KMOD_REMOVE_NOWAIT = O_NONBLOCK,
 };
 
+/* Insertion flags, not implemented yet */
 enum kmod_insert {
        KMOD_INSERT_FORCE_VERMAGIC = 0x1,
        KMOD_INSERT_FORCE_MODVERSION = 0x2,