Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Jun 2018 13:14:52 +0000 (UTC)
From:      Peter Holm <pho@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r335478 - user/pho/stress2/include
Message-ID:  <201806211314.w5LDEqvv006585@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806211314.w5LDEqvv006585>