diff options
Diffstat (limited to 'lib/zstd/common/zstd_common.c')
| -rw-r--r-- | lib/zstd/common/zstd_common.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/lib/zstd/common/zstd_common.c b/lib/zstd/common/zstd_common.c index 3d7e35b309b5..0f1f63be25d9 100644 --- a/lib/zstd/common/zstd_common.c +++ b/lib/zstd/common/zstd_common.c @@ -13,6 +13,7 @@  /*-*************************************  *  Dependencies  ***************************************/ +#include <linux/module.h>  #define ZSTD_DEPS_NEED_MALLOC  #include "zstd_deps.h"   /* ZSTD_malloc, ZSTD_calloc, ZSTD_free, ZSTD_memset */  #include "error_private.h" @@ -35,14 +36,17 @@ const char* ZSTD_versionString(void) { return ZSTD_VERSION_STRING; }   *  tells if a return value is an error code   *  symbol is required for external callers */  unsigned ZSTD_isError(size_t code) { return ERR_isError(code); } +EXPORT_SYMBOL_GPL(ZSTD_isError);  /*! ZSTD_getErrorName() :   *  provides error code string from function result (useful for debugging) */  const char* ZSTD_getErrorName(size_t code) { return ERR_getErrorName(code); } +EXPORT_SYMBOL_GPL(ZSTD_getErrorName);  /*! ZSTD_getError() :   *  convert a `size_t` function result into a proper ZSTD_errorCode enum */  ZSTD_ErrorCode ZSTD_getErrorCode(size_t code) { return ERR_getErrorCode(code); } +EXPORT_SYMBOL_GPL(ZSTD_getErrorCode);  /*! ZSTD_getErrorString() :   *  provides error code string from enum */ @@ -59,6 +63,7 @@ void* ZSTD_customMalloc(size_t size, ZSTD_customMem customMem)          return customMem.customAlloc(customMem.opaque, size);      return ZSTD_malloc(size);  } +EXPORT_SYMBOL_GPL(ZSTD_customMalloc);  void* ZSTD_customCalloc(size_t size, ZSTD_customMem customMem)  { @@ -71,6 +76,7 @@ void* ZSTD_customCalloc(size_t size, ZSTD_customMem customMem)      }      return ZSTD_calloc(1, size);  } +EXPORT_SYMBOL_GPL(ZSTD_customCalloc);  void ZSTD_customFree(void* ptr, ZSTD_customMem customMem)  { @@ -81,3 +87,7 @@ void ZSTD_customFree(void* ptr, ZSTD_customMem customMem)              ZSTD_free(ptr);      }  } +EXPORT_SYMBOL_GPL(ZSTD_customFree); + +MODULE_LICENSE("Dual BSD/GPL"); +MODULE_DESCRIPTION("Zstd Common"); | 
