-
Notifications
You must be signed in to change notification settings - Fork 12
/
todo.txt
108 lines (98 loc) · 2.91 KB
/
todo.txt
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
NTFSAVM - A NTFS driver from AVM
A list of things we have to take care of in the near and far future.
# Work in progress (WIP):
* avm-pa direct-path (?)
# Looky looky
Lindent:
console: ../../scripts/Lindent <FILE>
gvim: :%!../../scripts/Lindent
Checkpatch:
git ls-files | grep -Ee '\.[ch]$' | xargs -I{} -n1 ../../scripts/checkpatch.pl --file {} 2>/dev/null > checkpatch_errors
# Tree of files of the NTFSAVM project:
Legend:
* == will be removed
-> == changes to
File-tree:
├── dir.c
├── file.c
├── inode.c
├── Kconfig
├── Makefile
├── antfs.h
├── super.c
│ ├── ntfs-3g
│ │ ├── acls.h
│ │ ├── attrib.h
│ │ ├── attrlist.h
│ │ ├── bitmap.h
│ │ ├── bootsect.h
│ │ ├── cache.h
│ │ ├── collate.h
│ │ ├── compat.h
│ │ ├── compress.h
│ │ ├── debug.h
│ │ ├── device.h
│ │ ├── device_io.h
│ │ ├── dir.h
│ │ ├── ea.h
│ │ ├── efs.h
│ │ ├── endians.h
│ │ ├── index.h
│ │ ├── inode.h
│ │ ├── ioctl.h
│ │ ├── layout.h
│ │ ├── lcnalloc.h
│ │ ├── logfile.h
│ │ ├── logging.h
│ │ ├── mft.h
│ │ ├── misc.h
│ │ ├── mst.h
│ │ ├── ntfs.h
│ │ ├── ntfstime.h
│ │ ├── object_id.h
│ │ ├── param.h
│ │ ├── random.h
│ │ ├── realpath.h
│ │ ├── reparse.h
│ │ ├── runlist.h
│ │ ├── security.h
│ │ ├── support.h
│ │ ├── types.h
│ │ ├── unistr.h
│ │ ├── volume.h
│ │ └── xattrs.h
├── libntfs-3g
│ ├── acls.c
│ ├── attrib.c
│ ├── attrlist.c
│ ├── bitmap.c
│ ├── bootsect.c
│ ├── cache.c
│ ├── collate.c
│ ├── compat.c
│ ├── compress.c
│ ├── debug.c
│ ├── device.c
│ ├── dir.c
│ ├── ea.c
│ ├── efs.c
│ ├── index.c
│ ├── inode.c
│ ├── ioctl.c
│ ├── lcnalloc.c
│ ├── linux_io.c
│ ├── logfile.c
│ ├── logging.c
│ ├── Makefile
│ ├── mft.c
│ ├── misc.c
│ ├── mst.c
│ ├── object_id.c
│ ├── realpath.c
│ ├── reparse.c
│ ├── runlist.c
│ ├── security.c
│ ├── unistr.c
│ ├── unix_io.c
│ ├── volume.c
│ ├── xattrs.c