-
Notifications
You must be signed in to change notification settings - Fork 38
/
bitmap.h
107 lines (90 loc) · 2.32 KB
/
bitmap.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* SPDX-License-Identifier: GPL-2.0 */
/*
* ouiche_fs - a simple educational filesystem for Linux
*
* Copyright (C) 2018 Redha Gouicem <[email protected]>
*/
#ifndef _OUICHEFS_BITMAP_H
#define _OUICHEFS_BITMAP_H
#include <linux/bitmap.h>
#include "ouichefs.h"
/*
* Return the first free bit (set to 1) in a given in-memory bitmap spanning
* over multiple blocks and clear it.
* Return 0 if no free bit found (we assume that the first bit is never free
* because of the superblock and the root inode, thus allowing us to use 0 as an
* error value).
*/
static inline uint32_t get_first_free_bit(unsigned long *freemap,
unsigned long size)
{
uint32_t ino;
ino = find_first_bit(freemap, size);
if (ino == size)
return 0;
bitmap_clear(freemap, ino, 1);
return ino;
}
/*
* Return an unused inode number and mark it used.
* Return 0 if no free inode was found.
*/
static inline uint32_t get_free_inode(struct ouichefs_sb_info *sbi)
{
uint32_t ret;
ret = get_first_free_bit(sbi->ifree_bitmap, sbi->nr_inodes);
if (ret) {
sbi->nr_free_inodes--;
pr_debug("%s:%d: allocated inode %u\n", __func__, __LINE__,
ret);
}
return ret;
}
/*
* Return an unused block number and mark it used.
* Return 0 if no free block was found.
*/
static inline uint32_t get_free_block(struct ouichefs_sb_info *sbi)
{
uint32_t ret;
ret = get_first_free_bit(sbi->bfree_bitmap, sbi->nr_blocks);
if (ret) {
sbi->nr_free_blocks--;
pr_debug("%s:%d: allocated block %u\n", __func__, __LINE__,
ret);
}
return ret;
}
/*
* Mark the i-th bit in freemap as free (i.e. 1)
*/
static inline int put_free_bit(unsigned long *freemap, unsigned long size,
uint32_t i)
{
/* i is greater than freemap size */
if (i > size)
return -1;
bitmap_set(freemap, i, 1);
return 0;
}
/*
* Mark an inode as unused.
*/
static inline void put_inode(struct ouichefs_sb_info *sbi, uint32_t ino)
{
if (put_free_bit(sbi->ifree_bitmap, sbi->nr_inodes, ino))
return;
sbi->nr_free_inodes++;
pr_debug("%s:%d: freed inode %u\n", __func__, __LINE__, ino);
}
/*
* Mark a block as unused.
*/
static inline void put_block(struct ouichefs_sb_info *sbi, uint32_t bno)
{
if (put_free_bit(sbi->bfree_bitmap, sbi->nr_blocks, bno))
return;
sbi->nr_free_blocks++;
pr_debug("%s:%d: freed block %u\n", __func__, __LINE__, bno);
}
#endif /* _OUICHEFS_BITMAP_H */