Motr  M0
md_fid.h
Go to the documentation of this file.
1 /* -*- C -*- */
2 /*
3  * Copyright (c) 2012-2020 Seagate Technology LLC and/or its Affiliates
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * For any questions about this software or licensing,
18  * please email opensource@seagate.com or cortx-questions@seagate.com.
19  *
20  */
21 
22 
23 #pragma once
24 
25 #ifndef __MOTR_MDSERVICE_MD_FID_H__
26 #define __MOTR_MDSERVICE_MD_FID_H__
27 
34 /* import */
35 #include "fid/fid.h"
36 
37 /* Namespace name for root cob (not exposed to user) */
38 M0_EXTERN const char M0_COB_ROOT_NAME[];
39 
40 /* Grobal cob root fid. */
41 M0_EXTERN const struct m0_fid M0_COB_ROOT_FID;
42 
43 /* Namespace name for virtual .motr directory */
44 M0_EXTERN const char M0_DOT_MOTR_NAME[];
45 
46 /* .motr directory fid. */
47 M0_EXTERN const struct m0_fid M0_DOT_MOTR_FID;
48 
49 /* Namespace name for virtual .motr/fid directory */
50 M0_EXTERN const char M0_DOT_MOTR_FID_NAME[];
51 
52 /* .motr/fid directory fid. */
53 M0_EXTERN const struct m0_fid M0_DOT_MOTR_FID_FID;
54 
55 /* Hierarchy root fid (exposed to user). */
56 M0_EXTERN const struct m0_fid M0_MDSERVICE_SLASH_FID;
57 
58 /* First fid that is allowed to be used by client for normal files and dirs. */
59 M0_EXTERN const struct m0_fid M0_MDSERVICE_START_FID;
60 
62 #endif /* __MOTR_MDSERVICE_MD_FID_H__ */
63 
64 /*
65  * Local variables:
66  * c-indentation-style: "K&R"
67  * c-basic-offset: 8
68  * tab-width: 8
69  * fill-column: 80
70  * scroll-step: 1
71  * End:
72  */
M0_EXTERN const char M0_DOT_MOTR_FID_NAME[]
Definition: md_fid.h:50
M0_EXTERN const struct m0_fid M0_DOT_MOTR_FID_FID
Definition: md_fid.h:53
M0_EXTERN const struct m0_fid M0_COB_ROOT_FID
Definition: md_fid.h:41
M0_EXTERN const struct m0_fid M0_DOT_MOTR_FID
Definition: md_fid.h:47
M0_EXTERN const char M0_COB_ROOT_NAME[]
Definition: md_fid.h:38
M0_EXTERN const struct m0_fid M0_MDSERVICE_START_FID
Definition: md_fid.h:59
Definition: fid.h:38
M0_EXTERN const struct m0_fid M0_MDSERVICE_SLASH_FID
Definition: md_fid.h:56
M0_EXTERN const char M0_DOT_MOTR_NAME[]
Definition: md_fid.h:44