From: Anand Moon <anandx.ram.moon@intel.com>
To: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
Chris Wilson <chris@chris-wilson.co.uk>,
Matthew Auld <matthew.auld@intel.com>,
Tvrtko Ursulin <tvrtko.ursulin@intel.com>,
Jani Nikula <jani.nikula@linux.intel.com>,
Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>
Cc: Anand Moon <anandx.ram.moon@intel.com>
Subject: [Intel-gfx] [PATCH] drm/i915/gem: Add a check for object size for corner cases
Date: Wed, 10 Feb 2021 13:29:29 +0530 [thread overview]
Message-ID: <20210210075929.5357-1-anandx.ram.moon@intel.com> (raw)
Add check for object size to return appropriate error -E2BIG or -EINVAL
to avoid WARM_ON and sucessfull return for some testcase.
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Anand Moon <anandx.ram.moon@intel.com>
---
VLK-17702: Since these object size is U64 these corner case will not come
into real test senario.
IGT testcase:
sudo ./gem_create --r create-massive
sudo ./gem_userptr_blits --r input-checking
---
drivers/gpu/drm/i915/gem/i915_gem_object.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object.h b/drivers/gpu/drm/i915/gem/i915_gem_object.h
index 366d23afbb1a..afc37546da20 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object.h
@@ -33,6 +33,9 @@ static inline bool i915_gem_object_size_2big(u64 size)
{
struct drm_i915_gem_object *obj;
+ if (size == -1 || size == (-1ull << 32))
+ return true;
+
if (GEM_CHECK_SIZE_OVERFLOW(size))
return true;
--
2.30.0
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next reply other threads:[~2021-02-10 7:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-10 7:59 Anand Moon [this message]
2021-02-10 8:49 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gem: Add a check for object size for corner cases Patchwork
2021-02-10 10:45 ` [Intel-gfx] [PATCH] " Chris Wilson
2021-02-15 12:29 ` Ram Moon, AnandX
2021-02-15 12:39 ` Chris Wilson
2021-02-16 12:05 ` Ram Moon, AnandX
2021-02-16 12:07 ` Chris Wilson
2021-02-10 11:05 ` [Intel-gfx] ✓ Fi.CI.IGT: success for " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210210075929.5357-1-anandx.ram.moon@intel.com \
--to=anandx.ram.moon@intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=matthew.auld@intel.com \
--cc=tejaskumarx.surendrakumar.upadhyay@intel.com \
--cc=tvrtko.ursulin@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox