The patch titled Subject: zpool: clarification comment for zpool_has_pool has been removed from the -mm tree. Its filename was zpool-add-zpool_has_pool-fix.patch This patch was dropped because it was folded into zpool-add-zpool_has_pool.patch ------------------------------------------------------ From: Dan Streetman <ddstreet@xxxxxxxx> Subject: zpool: clarification comment for zpool_has_pool Add clarification in the documentation comment for zpool_has_pool() to explain the caller should assume the requested driver is or is not available, depending on return value. If true is returned, the caller should assume zpool_create_pool() will succeed, but still must be prepared to handle failure. Signed-off-by: Dan Streetman <ddstreet@xxxxxxxx> Cc: Seth Jennings <sjennings@xxxxxxxxxxxxxx> Cc: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/zpool.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff -puN mm/zpool.c~zpool-add-zpool_has_pool-fix mm/zpool.c --- a/mm/zpool.c~zpool-add-zpool_has_pool-fix +++ a/mm/zpool.c @@ -103,7 +103,15 @@ static void zpool_put_driver(struct zpoo * zpool_has_pool() - Check if the pool driver is available * @type The type of the zpool to check (e.g. zbud, zsmalloc) * - * This checks if the @type pool driver is available. + * This checks if the @type pool driver is available. This will try to load + * the requested module, if needed, but there is no guarantee the module will + * still be loaded and available immediately after calling. If this returns + * true, the caller should assume the pool is available, but must be prepared + * to handle the @zpool_create_pool() returning failure. However if this + * returns false, the caller should assume the requested pool type is not + * available; either the requested pool type module does not exist, or could + * not be loaded, and calling @zpool_create_pool() with the pool type will + * fail. * * Returns: true if @type pool is available, false if not */ _ Patches currently in -mm which might be from ddstreet@xxxxxxxx are zpool-add-zpool_has_pool.patch zswap-dynamic-pool-creation.patch zswap-dynamic-pool-creation-fix-2.patch zswap-change-zpool-compressor-at-runtime.patch zswap-change-zpool-compressor-at-runtime-fix.patch zswap-update-docs-for-runtime-changeable-attributes.patch zswap-update-docs-for-runtime-changeable-attributes-v2.patch zpool-remove-no-op-module-init-exit.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html