Add str_to_uuid function

Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
This commit is contained in:
Robert Baldyga 2018-12-19 13:28:35 +01:00
parent 09b0d72bbc
commit 848cd9112b

View File

@ -12,6 +12,7 @@
*/ */
#include "ocf_types.h" #include "ocf_types.h"
#include "ocf_env.h"
struct ocf_io; struct ocf_io;
@ -137,6 +138,16 @@ struct ocf_data_obj_properties {
/*!< Data object operations */ /*!< Data object operations */
}; };
static inline struct ocf_data_obj_uuid ocf_str_to_uuid(char *str)
{
struct ocf_data_obj_uuid uuid = {
.data = str,
.size = env_strnlen(str, OCF_DATA_OBJ_UUID_MAX_SIZE),
};
return uuid;
}
/** /**
* @brief Get data object type * @brief Get data object type
* *