ccecad7f97e02af647b319b3c65c28dcc00a6c94
[lwext4.git] / lwext4 / ext4_ialloc.h
1 /*\r
2  * Copyright (c) 2013 Grzegorz Kostka (kostka.grzegorz@gmail.com)\r
3  *\r
4  *\r
5  * HelenOS:\r
6  * Copyright (c) 2012 Martin Sucha\r
7  * Copyright (c) 2012 Frantisek Princ\r
8  * All rights reserved.\r
9  *\r
10  * Redistribution and use in source and binary forms, with or without\r
11  * modification, are permitted provided that the following conditions\r
12  * are met:\r
13  *\r
14  * - Redistributions of source code must retain the above copyright\r
15  *   notice, this list of conditions and the following disclaimer.\r
16  * - Redistributions in binary form must reproduce the above copyright\r
17  *   notice, this list of conditions and the following disclaimer in the\r
18  *   documentation and/or other materials provided with the distribution.\r
19  * - The name of the author may not be used to endorse or promote products\r
20  *   derived from this software without specific prior written permission.\r
21  *\r
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\r
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\r
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\r
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\r
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
32  */\r
33 \r
34 /** @addtogroup lwext4\r
35  * @{\r
36  */\r
37 /**\r
38  * @file  ext4_ialloc.c\r
39  * @brief Inode allocation procedures.\r
40  */\r
41 \r
42 #ifndef EXT4_IALLOC_H_\r
43 #define EXT4_IALLOC_H_\r
44 \r
45 #ifdef __cplusplus\r
46 extern "C" {\r
47 #endif\r
48 \r
49 #include <ext4_config.h>\r
50 #include <ext4_types.h>\r
51 \r
52 /**@brief Free i-node number and modify filesystem data structers.\r
53  * @param fs     Filesystem, where the i-node is located\r
54  * @param index  Index of i-node to be release\r
55  * @param is_dir Flag us for information whether i-node is directory or not\r
56  */\r
57 int ext4_ialloc_free_inode(struct ext4_fs *fs, uint32_t index, bool is_dir);\r
58 \r
59 /**@brief I-node allocation algorithm.\r
60  * This is more simple algorithm, than Orlov allocator used\r
61  * in the Linux kernel.\r
62  * @param fs     Filesystem to allocate i-node on\r
63  * @param index  Output value - allocated i-node number\r
64  * @param is_dir Flag if allocated i-node will be file or directory\r
65  * @return Error code\r
66  */\r
67 int ext4_ialloc_alloc_inode(struct ext4_fs *fs, uint32_t *index, bool is_dir);\r
68 \r
69 #ifdef __cplusplus\r
70 }\r
71 #endif\r
72 #endif /* EXT4_IALLOC_H_ */\r
73 \r
74 /**\r
75  * @}\r
76  */\r