-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
46 lines (30 loc) · 1.52 KB
/
ChangeLog
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
2008-03-03 Apurva Mehta <[email protected]>
* include/blockfs_utils.h : Put necessary the parenthesis around
the caching macros. The absence of parenthesis was causing the
caching problems.
2008-01-15 Apurva Mehta <[email protected]>
* src/utils.c (get_size): Cleaned up some error messages
(blockfs_calc_and_store_sizes): Changed the size computations so
that they now round down rather than round up. As a result, we can
now successfully create and use an ext2 filesystem on a blockfs
volume.
2007-11-28 Apurva Mehta <[email protected]>
* src/read.c: Re-wrote the read module so that it now works
without the assumption that the read offsets will be on block
boundaries, and that the read size will be multiples of the block
size.
* include/blockfs.h : Added the CACHE_SLOT_NUM macro.
* src/read.c : Updated variable name cache_block_num to
cache_slot_num to make the code more comprehensible. Updated the
code to make use of the new address translation macros.
2007-11-27 Apurva Mehta <[email protected]>
* src/write.c: Implemented the write module
* src/read.c: Commented out locking code as it has been decided to
ignore synchronization issues for the time being.
2007-11-23 Apurva Mehta <[email protected]>
* include/blockfs_locks.h: Cleaned up the comments.
* src/read.c (update_block): Removed the magic numbers and used the
new tunable macros wherever relevant.
* include/blockfs.h: Added macros to serve as tunables to the
caching algorithm.
* src/read.c: Cleaned up the comments a bit.