Commit a8f1d32d authored by Bob Peterson's avatar Bob Peterson
Browse files

gfs2: Eliminate vestigial HIF_FIRST



Holder flag HIF_FIRST is no longer used or needed, so remove it.

Signed-off-by: default avatarBob Peterson <rpeterso@redhat.com>
parent 7392fbb0
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2077,8 +2077,6 @@ static const char *hflags2str(char *buf, u16 flags, unsigned long iflags)
		*p++ = 'H';
	if (test_bit(HIF_WAIT, &iflags))
		*p++ = 'W';
	if (test_bit(HIF_FIRST, &iflags))
		*p++ = 'F';
	*p = 0;
	return buf;
}
+0 −1
Original line number Diff line number Diff line
@@ -253,7 +253,6 @@ struct gfs2_lkstats {
enum {
	/* States */
	HIF_HOLDER		= 6,  /* Set for gh that "holds" the glock */
	HIF_FIRST		= 7,
	HIF_WAIT		= 10,
};