Merge "msm: kgsl: Print Vulkan memory types as well"

This commit is contained in:
Linux Build Service Account 2017-11-05 22:32:54 -08:00 committed by Gerrit - the friendly Code Review server
commit e6754b0406

View file

@ -1038,7 +1038,7 @@ void kgsl_get_memory_usage(char *name, size_t name_size, uint64_t memflags)
else if (type < ARRAY_SIZE(memtype_str) && memtype_str[type] != NULL)
strlcpy(name, memtype_str[type], name_size);
else
snprintf(name, name_size, "unknown(%3d)", type);
snprintf(name, name_size, "VK/others(%3d)", type);
}
EXPORT_SYMBOL(kgsl_get_memory_usage);