svn commit: r319303 - stable/10/lib/libgeom

Ngie Cooper ngie at FreeBSD.org
Wed May 31 08:40:47 UTC 2017


Author: ngie
Date: Wed May 31 08:40:46 2017
New Revision: 319303
URL: https://svnweb.freebsd.org/changeset/base/319303

Log:
  MFC r317311,r317312,r319019:
  
  r317311:
  
  Check for failures from getpagesize(3)
  
  Return errno on failure, similar to the open(2) call above it.
  
  CID:		1193753
  
  r317312:
  
  Fix type for `pagesize` to match the return type for getpagesize(3)
  to fix the build
  
  Pointyhat to:	ngie
  
  r319019:
  
  Remove getpagesize(3) error checking added in r317312
  
  getpagesize(3) no longer fails as of r317436.

Modified:
  stable/10/lib/libgeom/geom_stats.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libgeom/geom_stats.c
==============================================================================
--- stable/10/lib/libgeom/geom_stats.c	Wed May 31 08:40:39 2017	(r319302)
+++ stable/10/lib/libgeom/geom_stats.c	Wed May 31 08:40:46 2017	(r319303)
@@ -42,8 +42,8 @@
 #include <libgeom.h>
 
 /************************************************************/
-static uint npages, pagesize, spp;
-static int statsfd = -1;
+static uint npages, spp;
+static int pagesize, statsfd = -1;
 static u_char *statp;
 
 void


More information about the svn-src-stable mailing list