Merge pull request #22 from robertbaldyga/add-str_to_uuid

Add str_to_uuid function
This commit is contained in:
Michał Wysoczański 2018-12-19 13:36:58 +01:00 committed by GitHub
commit 4a41d76216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,7 @@
*/
#include "ocf_types.h"
#include "ocf_env.h"
struct ocf_io;
@ -137,6 +138,16 @@ struct ocf_data_obj_properties {
/*!< 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
*