@@ -40,13 +40,12 @@ namespace {
40
40
41
41
// Tags for marker storage
42
42
constexpr TLV::Tag kMarkerFabricIndexTag = TLV::ContextTag(0 );
43
- constexpr TLV::Tag kMarkerIsAdditionTag = TLV::ContextTag(1 );
44
43
45
44
constexpr size_t MarkerContextTLVMaxSize ()
46
45
{
47
46
// Add 2x uncommitted uint64_t to leave space for backwards/forwards
48
47
// versioning for this critical feature that runs at boot.
49
- return TLV::EstimateStructOverhead (sizeof (FabricIndex), sizeof (bool ), sizeof ( uint64_t ), sizeof (uint64_t ));
48
+ return TLV::EstimateStructOverhead (sizeof (FabricIndex), sizeof (uint64_t ), sizeof (uint64_t ));
50
49
}
51
50
52
51
} // namespace
@@ -198,9 +197,6 @@ CHIP_ERROR FailSafeContext::GetMarker(Marker & outMarker)
198
197
ReturnErrorOnFailure (reader.Next (kMarkerFabricIndexTag ));
199
198
ReturnErrorOnFailure (reader.Get (outMarker.fabricIndex ));
200
199
201
- ReturnErrorOnFailure (reader.Next (kMarkerIsAdditionTag ));
202
- ReturnErrorOnFailure (reader.Get (outMarker.isAddition ));
203
-
204
200
// Don't try to exit container: we got all we needed. This allows us to
205
201
// avoid erroring-out on newer versions.
206
202
@@ -218,7 +214,6 @@ CHIP_ERROR FailSafeContext::StoreMarker(const Marker & marker)
218
214
TLV::TLVType outerType;
219
215
ReturnErrorOnFailure (writer.StartContainer (TLV::AnonymousTag (), TLV::kTLVType_Structure , outerType));
220
216
ReturnErrorOnFailure (writer.Put (kMarkerFabricIndexTag , marker.fabricIndex ));
221
- ReturnErrorOnFailure (writer.Put (kMarkerIsAdditionTag , marker.isAddition ));
222
217
ReturnErrorOnFailure (writer.EndContainer (outerType));
223
218
224
219
const auto markerContextTLVLength = writer.GetLengthWritten ();
0 commit comments