]> Zhao Yanbai Git Server - minix.git/commitdiff
mfs: more accurate stat.st_blocks estimation
authorDavid van Moolenbroek <david@minix3.org>
Sun, 4 Mar 2012 11:14:06 +0000 (12:14 +0100)
committerDavid van Moolenbroek <david@minix3.org>
Mon, 5 Mar 2012 21:32:33 +0000 (22:32 +0100)
On MFS file systems, the stat(2) call now counts indirect blocks as
part of the st_blocks calculation, in addition to proper initial
rounding of the file size. The returned value is now a true upper
bound on the actual number of 512-byte blocks allocated to the file.
As before, it is not accurate for sparse files.

servers/mfs/stadir.c

index c34d00321fd7b244f5068658a299551ee5d6c62b..02314bcb0ad319055f2e12237e9a2c0c2ca5e150 100644 (file)
@@ -8,6 +8,36 @@
 #include "super.h"
 #include <minix/vfsif.h>
 
+/*===========================================================================*
+ *                             estimate_blocks                              *
+ *===========================================================================*/
+PRIVATE blkcnt_t estimate_blocks(struct inode *rip)
+{
+/* Return the number of 512-byte blocks used by this file. This includes space
+ * used by data zones and indirect blocks (actually also zones). Reading in all
+ * indirect blocks is too costly for a stat call, so we disregard holes and
+ * return a conservative estimation.
+ */
+  unsigned int zone_size, zones, sindirs, dindirs, nr_indirs, sq_indirs;
+
+  /* Compute the number of zones used by the file. */
+  zone_size = rip->i_sp->s_block_size << rip->i_sp->s_log_zone_size;
+
+  zones = (rip->i_size + zone_size - 1) / zone_size;
+
+  /* Compute the number of indirect blocks needed for that zone count. */
+  nr_indirs = rip->i_nindirs;
+  sq_indirs = nr_indirs * nr_indirs;
+
+  sindirs = (zones - rip->i_ndzones + nr_indirs - 1) / nr_indirs;
+  dindirs = (sindirs - 1 + sq_indirs - 1) / sq_indirs;
+
+  /* Return the number of 512-byte blocks corresponding to the number of data
+   * zones and indirect blocks.
+   */
+  return (zones + sindirs + dindirs) * (zone_size / 512);
+}
+
 /*===========================================================================*
  *                             stat_inode                                   *
  *===========================================================================*/
@@ -22,7 +52,6 @@ PRIVATE int stat_inode(
   struct stat statbuf;
   mode_t mo;
   int r, s;
-  u32_t blocks; /* The unit of this is 512 */
 
   /* Update the atime, ctime, and mtime fields in the inode, if need be. */
   if (rip->i_update) update_times(rip);
@@ -33,10 +62,6 @@ PRIVATE int stat_inode(
   /* true iff special */
   s = (mo == I_CHAR_SPECIAL || mo == I_BLOCK_SPECIAL);
 
-  blocks = rip->i_size / 512;
-  if (rip->i_size % 512 != 0)
-       blocks += 1;
-
   memset(&statbuf, 0, sizeof(struct stat));
 
   statbuf.st_dev = rip->i_dev;
@@ -51,7 +76,7 @@ PRIVATE int stat_inode(
   statbuf.st_mtime = rip->i_mtime;
   statbuf.st_ctime = rip->i_ctime;
   statbuf.st_blksize = fs_block_size;
-  statbuf.st_blocks = blocks;
+  statbuf.st_blocks = estimate_blocks(rip);
 
   /* Copy the struct to user space. */
   r = sys_safecopyto(who_e, gid, (vir_bytes) 0, (vir_bytes) &statbuf,