-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUGS
29 lines (17 loc) · 881 Bytes
/
BUGS
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
Known tarfs bugs
=--------------=
1. General
* io_map () not implemented (gcc uses it unfortunately).
* netfs.c (netfs_get_dirents): too much memory may be allocated (mmap'd).
2. Writable fs bugs
* UIDs/GIDs are not properly handled (uses numbers instead of strings).
* Deadlock when syncing the filesystem at tarfs.c:tarfs_sync_fs when
trying to acquire the lock of a node (couldn't reproduce it though).
3. Zip stores bug
* Missing feature: RPC encoding/decoding stuff not supported.
Note: The gzip and bzip2 stores sharing most of their code, there is a
high probability that any bug occuring with on backend should also
occur with the other. If you encounter a bug, please try using
both backends to see if that makes any difference. The code is
also very close to what's in cache.c.
For more bugs, "grep '\(FIXME\|XXX\)' *.c" should do the trick.