Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / listati / file.h
1 struct file {
2     ...
3     struct path             f_path;
4     const struct file_operations    *f_op;
5     ...
6     atomic_long_t           f_count;
7     unsigned int            f_flags;
8     fmode_t                 f_mode;
9     loff_t                  f_pos;
10     ...
11 };