]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/ocf/env/posix/ocf_env_headers.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / ocf / env / posix / ocf_env_headers.h
CommitLineData
9f95a23c 1/*
f67539c2 2 * Copyright(c) 2019-2020 Intel Corporation
9f95a23c
TL
3 * SPDX-License-Identifier: BSD-3-Clause-Clear
4 */
5
6#ifndef __OCF_ENV_HEADERS_H__
7#define __OCF_ENV_HEADERS_H__
8
9#include <stdint.h>
10#include <stddef.h>
11#include <stdbool.h>
12
13/* TODO: Move prefix printing to context logger. */
f67539c2 14#define OCF_LOGO "OCF"
9f95a23c
TL
15#define OCF_PREFIX_SHORT "[" OCF_LOGO "] "
16#define OCF_PREFIX_LONG "Open CAS Framework"
17
f67539c2
TL
18#define OCF_VERSION_MAIN 20
19#define OCF_VERSION_MAJOR 3
20#define OCF_VERSION_MINOR 0
9f95a23c
TL
21
22#endif /* __OCF_ENV_HEADERS_H__ */