diff options
| author | Doug Gilbert <dgilbert@us.ibm.com> | 2011-08-25 10:53:14 -0500 |
|---|---|---|
| committer | Douglas R. Gilbert <dgilbert@us.ibm.com> | 2011-09-07 10:37:16 -0500 |
| commit | 6dd3a0514d3754d607be5689bf07a04d3cc8f483 (patch) | |
| tree | 90428972c1acc0c6b470b83e84b2ece5780a6ad3 /src/include/usr/vfs | |
| parent | dd8d92217c8cebd6aa5408ad7fd4fa50ea248c84 (diff) | |
| download | talos-hostboot-6dd3a0514d3754d607be5689bf07a04d3cc8f483.tar.gz talos-hostboot-6dd3a0514d3754d607be5689bf07a04d3cc8f483.zip | |
Move libs to the extended image
Change-Id: I275a3a4b897e6426164e4f3bd642f92b0d3fed07
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/285
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Douglas R. Gilbert <dgilbert@us.ibm.com>
Diffstat (limited to 'src/include/usr/vfs')
| -rw-r--r-- | src/include/usr/vfs/vfs.H | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/usr/vfs/vfs.H b/src/include/usr/vfs/vfs.H index 7649c3327..9b921c317 100644 --- a/src/include/usr/vfs/vfs.H +++ b/src/include/usr/vfs/vfs.H @@ -25,6 +25,7 @@ #include <errl/errlentry.H> #include <sys/vfs.h> +#include <vector> namespace VFS { @@ -58,6 +59,19 @@ namespace VFS return VFS::module_load_unload(i_module, VFS_MSG_UNLOAD); } + /** + * Find test modules + * @param[out] list of module names + */ + void find_test_modules(std::vector<const char *> & o_list); + + /** + * Test for existance of module + * @param[in] i_name module name + * @return [true|false] + */ + bool module_exists(const char * i_name); + }; #endif |

