Lines Matching defs:query_info
1757 * @query_info: pointer to ras_query_if
1765 struct ras_query_if *query_info)
1769 if (!query_info)
1770 /* do nothing if query_info is not specified */
1773 ret = amdgpu_ras_query_error_status(adev, query_info);
1777 *ce_count += query_info->ce_count;
1778 *ue_count += query_info->ue_count;
1784 if (amdgpu_ras_reset_error_status(adev, query_info->head.block))
1798 * @query_info: pointer to ras_query_if if the query request is only for
1809 struct ras_query_if *query_info)
1826 if (!query_info) {
1837 ret = amdgpu_ras_query_error_count_helper(adev, &ce, &ue, query_info);
4508 struct ras_query_if *query_info;
4553 query_info = kzalloc_obj(*query_info);
4554 if (!query_info)
4556 memcpy(&query_info->head, ras_block, sizeof(struct ras_common_if));
4558 if (amdgpu_ras_query_error_count(adev, &ce_count, &ue_count, query_info) == 0) {
4563 kfree(query_info);