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: Divya Ponnusamy <pdivya@codeaurora.org>
This commit is contained in:
parent
9cc575936a
commit
dcd111c96e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue