]> git.ipfire.org Git - thirdparty/kmod.git/blobdiff - TODO
travis: use kernel headers for testsuite
[thirdparty/kmod.git] / TODO
diff --git a/TODO b/TODO
index 800ce79a49f97adcbf8891972a10055e67a39c01..278286f874892586e2b6b48dbd1dcd0b424c25d8 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,16 +1,13 @@
 Features:
 =========
 
+* Improve module-playground to contain the actual code from modules in the
+  testsuite
+
 * Add command for signing modules
    - There is a script to sign modules in kernel tree, but we should be able to
    sign modules by ourselves
 
-* Remove duplicate symbols in libkmod and tools
-   - Some functions were added both in libkmod and tools like depmod since they
-     couldn't be easily exported. Now we could be sharing there more easily
-     through libkmod-internal, or by creating a shared/ dir in which to put
-     these functions
-
 * Stop using NOFAIL() and fatal()
 
 * Protect index against OOM
@@ -19,6 +16,7 @@ Features:
 
 * testsuite:
    - when fake delete_module() succeeds, remove its entry from /sys/module
+   - improve coverage (use --enable-coverage to check the current state)
 
 * Stop using system() inside the library and use fork + exec instead
 
@@ -26,6 +24,9 @@ Features:
   vector instead of a list. This way we could search in it by calling
   bsearch().
 
+* config: implement the config handling in shared/ and use it in both depmod
+and libkmod
+
 * review API, maybe unify all of these getters:
    - kmod_module_version_get_symbol()
    - kmod_module_version_get_crc()
@@ -39,6 +40,9 @@ Features:
 
 * index: drop the "open(), seek(), read()" implementation and use another one
   with mmap(). When lookup() is called and the file is not mmaped, mmap it.
+  Another possibility is to drop the mmap implementation relying on VFS to have
+  the pages cached. This would simplify the interface exported by libkmod.
+  Measure performance before deciding.
 
 
 Things to be added/removed in kernel (check what is really needed):