From 49e48bcbb126680665cdd35e890054e24cb43307 Mon Sep 17 00:00:00 2001 From: Roel de Jong <12800443+twiggler@users.noreply.github.com> Date: Tue, 15 Oct 2024 09:23:08 +0200 Subject: [PATCH] Add ticket link --- dissect/xfs/xfs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dissect/xfs/xfs.py b/dissect/xfs/xfs.py index a79ba76..30351c0 100644 --- a/dissect/xfs/xfs.py +++ b/dissect/xfs/xfs.py @@ -329,6 +329,7 @@ def link(self) -> str: # need three blocks. These three blocks could theoretially be distributed over multiple extents. # Linux kernel handles this by using sl_offset to piece the symlink back together. # As this edge case of an edge case is very unlikely, it is unsupported until we observe it. + # Ticket: https://github.com/fox-it/dissect.xfs/issues/36 if len(self.dataruns()) > 1: raise NotImplementedError(f"{self!r} has a symlink distributed over multiple extents")