blob: 2c5490315ae552152c986936382cef40b9beafa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
- Verify that file holes work (they should, but must be checked). Add a
regression test for this feature.
- Fix and complete code marked with `XXX' and `TODO' tags.
- Adjust code style - remove the /* ---- */ markers and use standard
struct vop_*_args assignment into *ap with comment like:
struct vop_link_v2_args /* {
struct vnode *a_dvp;
struct vnode *a_vp;
struct componentname *a_cnp;
} */ *ap = v;
jmmv: I may agree with the removal of the visual lines, but not with the
vop_*_args assignment. Those are very ugly and add a lot of redundancy.
|