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:
Divya Ponnusamy 2016-06-09 16:04:15 +05:30 committed by Kyle Yan
parent 9cc575936a
commit dcd111c96e

View file

@ -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