From c9caebc117d40fbc72d5171d706aae345dd7820d Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Wed, 1 Jun 2016 21:07:05 -0700 Subject: [PATCH] scoutfs: remove unused held_trans The held lock struct had an unused 'held_trans' field from a previous version of the code that specifically tried to track if a held lock had the trans open. Signed-off-by: Zach Brown --- kmod/src/wrlock.h | 1 - 1 file changed, 1 deletion(-) diff --git a/kmod/src/wrlock.h b/kmod/src/wrlock.h index 2a88b62d..d8304498 100644 --- a/kmod/src/wrlock.h +++ b/kmod/src/wrlock.h @@ -4,7 +4,6 @@ #include "wire.h" struct scoutfs_wrlock_held { - bool held_trans; u8 nr_shards; u32 shards[SCOUTFS_WRLOCK_MAX_SHARDS]; };