Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcd111c9 authored by Divya Ponnusamy's avatar Divya Ponnusamy Committed by Kyle Yan
Browse files

base: sync: Increase char buffer size to get accurate fence name



Increase the char buffer size for the sync fence name from
32 to 64. This makes it possible for drivers to use a longer,
more descriptive name for sync_fence, which improves the
readability of the sync dump in debugfs.

Change-Id: I8a54ec1c7b95764fe3a39f00ce392fddcfd261f1
Signed-off-by: default avatarDivya Ponnusamy <pdivya@codeaurora.org>
parent 9cc57593
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -154,7 +154,7 @@ struct sync_fence_cb {
struct sync_fence {
	struct file		*file;
	struct kref		kref;
	char			name[32];
	char			name[64];
#ifdef CONFIG_DEBUG_FS
	struct list_head	sync_fence_list;
#endif