Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 May 2006 06:16:41 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 97325 for review
Message-ID:  <200605170616.k4H6Gfu0053052@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=97325

Change 97325 by kmacy@kmacy_storage:sun4v_rwbuf on 2006/05/17 06:16:11

	add TH_INVALID flag

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sun4v/include/tte_hash.h#15 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sun4v/include/tte_hash.h#15 (text+ko) ====

@@ -4,6 +4,9 @@
 #define THE_SHIFT    6          /* size of hash entry is 64-bytes */
 #define TH_COLLISION_SHIFT   47 /* bit 47 will never be set for a valid tag */
 #define TH_COLLISION       (1UL << TH_COLLISION_SHIFT)  
+#define TH_INVALID_SHIFT     46 /* bit 46 will never be set for a valid tag */
+#define TH_INVALID         (1UL << TH_INVALID_SHIFT)  
+
 
 struct tte_hash;
 typedef struct tte_hash *tte_hash_t;



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