summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_query.c
diff options
context:
space:
mode:
authorFrancois Dugast <francois.dugast@intel.com>2023-07-17 11:20:18 +0300
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-21 19:37:30 +0300
commitb8c1ba831e675005ff871cd4a4e04ff90326b4ae (patch)
treede3632bd0b6e46956f00b8c302385e2b3fd5adae /drivers/gpu/drm/xe/xe_query.c
parent5ce58303440b7efb21c554cb0b6614482aab8fe9 (diff)
downloadlinux-b8c1ba831e675005ff871cd4a4e04ff90326b4ae.tar.xz
drm/xe: Prevent flooding the kernel log with XE_IOCTL_ERR
Lower log level of XE_IOCTL_ERR macro to debug in order to prevent flooding kernel log. v2: Rename XE_IOCTL_ERR to XE_IOCTL_DBG (Rodrigo Vivi) v3: Rebase v4: Fix style, remove unrelated change about __FILE__ and __LINE__ Link: https://lists.freedesktop.org/archives/intel-xe/2023-May/004704.html Signed-off-by: Francois Dugast <francois.dugast@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_query.c')
-rw-r--r--drivers/gpu/drm/xe/xe_query.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
index 9acbb27dfcab..4b7869596ba8 100644
--- a/drivers/gpu/drm/xe/xe_query.c
+++ b/drivers/gpu/drm/xe/xe_query.c
@@ -60,12 +60,12 @@ static int query_engines(struct xe_device *xe,
if (query->size == 0) {
query->size = size;
return 0;
- } else if (XE_IOCTL_ERR(xe, query->size != size)) {
+ } else if (XE_IOCTL_DBG(xe, query->size != size)) {
return -EINVAL;
}
hw_engine_info = kmalloc(size, GFP_KERNEL);
- if (XE_IOCTL_ERR(xe, !hw_engine_info))
+ if (XE_IOCTL_DBG(xe, !hw_engine_info))
return -ENOMEM;
for_each_gt(gt, xe, gt_id)
@@ -114,12 +114,12 @@ static int query_memory_usage(struct xe_device *xe,
if (query->size == 0) {
query->size = size;
return 0;
- } else if (XE_IOCTL_ERR(xe, query->size != size)) {
+ } else if (XE_IOCTL_DBG(xe, query->size != size)) {
return -EINVAL;
}
usage = kzalloc(size, GFP_KERNEL);
- if (XE_IOCTL_ERR(xe, !usage))
+ if (XE_IOCTL_DBG(xe, !usage))
return -ENOMEM;
man = ttm_manager_type(&xe->ttm, XE_PL_TT);
@@ -177,12 +177,12 @@ static int query_config(struct xe_device *xe, struct drm_xe_device_query *query)
if (query->size == 0) {
query->size = size;
return 0;
- } else if (XE_IOCTL_ERR(xe, query->size != size)) {
+ } else if (XE_IOCTL_DBG(xe, query->size != size)) {
return -EINVAL;
}
config = kzalloc(size, GFP_KERNEL);
- if (XE_IOCTL_ERR(xe, !config))
+ if (XE_IOCTL_DBG(xe, !config))
return -ENOMEM;
config->num_params = num_params;
@@ -226,12 +226,12 @@ static int query_gts(struct xe_device *xe, struct drm_xe_device_query *query)
if (query->size == 0) {
query->size = size;
return 0;
- } else if (XE_IOCTL_ERR(xe, query->size != size)) {
+ } else if (XE_IOCTL_DBG(xe, query->size != size)) {
return -EINVAL;
}
gts = kzalloc(size, GFP_KERNEL);
- if (XE_IOCTL_ERR(xe, !gts))
+ if (XE_IOCTL_DBG(xe, !gts))
return -ENOMEM;
gts->num_gt = xe->info.gt_count;
@@ -273,12 +273,12 @@ static int query_hwconfig(struct xe_device *xe,
if (query->size == 0) {
query->size = size;
return 0;
- } else if (XE_IOCTL_ERR(xe, query->size != size)) {
+ } else if (XE_IOCTL_DBG(xe, query->size != size)) {
return -EINVAL;
}
hwconfig = kzalloc(size, GFP_KERNEL);
- if (XE_IOCTL_ERR(xe, !hwconfig))
+ if (XE_IOCTL_DBG(xe, !hwconfig))
return -ENOMEM;
xe_device_mem_access_get(xe);
@@ -332,7 +332,7 @@ static int query_gt_topology(struct xe_device *xe,
if (query->size == 0) {
query->size = size;
return 0;
- } else if (XE_IOCTL_ERR(xe, query->size != size)) {
+ } else if (XE_IOCTL_DBG(xe, query->size != size)) {
return -EINVAL;
}
@@ -380,15 +380,15 @@ int xe_query_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
struct drm_xe_device_query *query = data;
u32 idx;
- if (XE_IOCTL_ERR(xe, query->extensions) ||
- XE_IOCTL_ERR(xe, query->reserved[0] || query->reserved[1]))
+ if (XE_IOCTL_DBG(xe, query->extensions) ||
+ XE_IOCTL_DBG(xe, query->reserved[0] || query->reserved[1]))
return -EINVAL;
- if (XE_IOCTL_ERR(xe, query->query > ARRAY_SIZE(xe_query_funcs)))
+ if (XE_IOCTL_DBG(xe, query->query > ARRAY_SIZE(xe_query_funcs)))
return -EINVAL;
idx = array_index_nospec(query->query, ARRAY_SIZE(xe_query_funcs));
- if (XE_IOCTL_ERR(xe, !xe_query_funcs[idx]))
+ if (XE_IOCTL_DBG(xe, !xe_query_funcs[idx]))
return -EINVAL;
return xe_query_funcs[idx](xe, query);