svn commit: r335478 - user/pho/stress2/include

Peter Holm pho at FreeBSD.org
Thu Jun 21 13:14:53 UTC 2018


Author: pho
Date: Thu Jun 21 13:14:52 2018
New Revision: 335478
URL: https://svnweb.freebsd.org/changeset/base/335478

Log:
  Block and inode count is int64_t in struct statfs.
  
  Sponsored by:	Dell EMC Isilon

Modified:
  user/pho/stress2/include/stress.h

Modified: user/pho/stress2/include/stress.h
==============================================================================
--- user/pho/stress2/include/stress.h	Thu Jun 21 11:52:09 2018	(r335477)
+++ user/pho/stress2/include/stress.h	Thu Jun 21 13:14:52 2018	(r335478)
@@ -47,8 +47,8 @@ typedef struct {
 	int hog;
 	int nodelay;
 	int kill;
-	int kblocks;
-	int inodes;
+	int64_t kblocks;
+	int64_t inodes;
 } opt_t;
 
 extern opt_t *op;


More information about the svn-src-user mailing list