patch-2.3.42 linux/fs/qnx4/inode.c
Next file: linux/fs/select.c
Previous file: linux/fs/qnx4/dir.c
Back to the patch index
Back to the overall index
- Lines: 21
- Date:
Mon Jan 31 15:40:23 2000
- Orig file:
v2.3.41/linux/fs/qnx4/inode.c
- Orig date:
Tue Jan 11 22:31:43 2000
diff -u --recursive --new-file v2.3.41/linux/fs/qnx4/inode.c linux/fs/qnx4/inode.c
@@ -275,13 +275,13 @@
struct statfs tmp;
memset(&tmp, 0, sizeof tmp);
- tmp.f_type = sb->s_magic;
- tmp.f_bsize = sb->s_blocksize;
- tmp.f_blocks = le32_to_cpu(sb->u.qnx4_sb.BitMap->di_size) * 8;
- tmp.f_bfree = qnx4_count_free_blocks(sb);
- tmp.f_bavail = tmp.f_bfree;
- tmp.f_files = 0x00; /* change this !!! */
- tmp.f_ffree = qnx4_count_free_inodes(sb);
+ tmp.f_type = sb->s_magic;
+ tmp.f_bsize = sb->s_blocksize;
+ tmp.f_blocks = le32_to_cpu(sb->u.qnx4_sb.BitMap->di_size) * 8;
+ tmp.f_bfree = qnx4_count_free_blocks(sb);
+ tmp.f_bavail = tmp.f_bfree;
+ tmp.f_files = -1; /* we don't count files */
+ tmp.f_ffree = -1; /* inodes are allocated dynamically */
tmp.f_namelen = QNX4_NAME_MAX;
return copy_to_user(buf, &tmp, bufsize) ? -EFAULT : 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)