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

Commit 57942721 authored by Divya Ponnusamy's avatar Divya Ponnusamy
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 48f705c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -163,7 +163,7 @@ struct sync_pt {
struct sync_fence {
	struct file		*file;
	struct kref		kref;
	char			name[32];
	char			name[64];

	/* this list is immutable once the fence is created */
	struct list_head	pt_list_head;