Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jul 2013 18:19:48 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r253163 - head/sys/ufs/ufs
Message-ID:  <201307101819.r6AIJmH8034694@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg
Date: Wed Jul 10 18:19:48 2013
New Revision: 253163
URL: http://svnweb.freebsd.org/changeset/base/253163

Log:
  Change i_gen in UFS to an unsigned type.
  
  Missing type change from r252435.
  
  This fixes a "Stale NFS file handle" error.
  
  Reported by:	Claude Bisson
  Tested by:	Claude Bisson
  Pointed hat:	pfg

Modified:
  head/sys/ufs/ufs/inode.h

Modified: head/sys/ufs/ufs/inode.h
==============================================================================
--- head/sys/ufs/ufs/inode.h	Wed Jul 10 18:07:01 2013	(r253162)
+++ head/sys/ufs/ufs/inode.h	Wed Jul 10 18:19:48 2013	(r253163)
@@ -180,7 +180,7 @@ struct ufid {
 	u_int16_t ufid_len;	/* Length of structure. */
 	u_int16_t ufid_pad;	/* Force 32-bit alignment. */
 	uint32_t  ufid_ino;	/* File number (ino). */
-	int32_t	  ufid_gen;	/* Generation number. */
+	uint32_t  ufid_gen;	/* Generation number. */
 };
 #endif /* _KERNEL */
 



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