From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH igt v2] lib: Skip aliased bsd ABI ring if bsd2 is available
Date: Wed, 21 Feb 2018 12:55:17 +0000 [thread overview]
Message-ID: <f1135129-25fc-3d83-26b3-3f3d52f206ab@linux.intel.com> (raw)
In-Reply-To: <40144f50-8fab-808b-8035-b1e3035e028b@linux.intel.com>
On 21/02/2018 12:53, Tvrtko Ursulin wrote:
>
> On 21/02/2018 12:17, Chris Wilson wrote:
>> How much do I want this uABI to rot away? Say "Never again!" to implicit
>> aliasing.
>>
>> In the meantime, we do not need to perform duplicate work on bsd2
>> machines, as especially we do not know which engine bsd relates to.
>>
>> v2: When in doubt, shout!
>>
>> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>> ---
>> lib/ioctl_wrappers.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
>> index 8748cfcf..b9b86079 100644
>> --- a/lib/ioctl_wrappers.c
>> +++ b/lib/ioctl_wrappers.c
>> @@ -1460,7 +1460,7 @@ bool gem_has_ring(int fd, unsigned ring)
>> /* silly ABI, the kernel thinks everyone who has BSD also has
>> BSD2 */
>> if ((ring & ~(3<<13)) == I915_EXEC_BSD) {
>> - if (ring & (3 << 13) && !gem_has_bsd2(fd))
>> + if (!(ring & (3 << 13)) ^ !gem_has_bsd2(fd))
>> return false;
>> }
>
> If default BSD (1)
> and no BSD2 -> 1 ^ 1 = 1 OK
Oops
1 ^ 1 = 0 so also bad
> and BSD2 -> 1 ^ 0 = 1 BAD
>
> If explicit BSD (0)
> and no BSD2 -> 0 ^ 1 = 1 BAD
> has BSD2 -> 0 ^ 0 = 0 = BAD
>
> Maybe I'm confused.. please simplify the statement? :)
>
> Regards,
>
> Tvrtko
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2018-02-21 12:55 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-21 11:21 [PATCH igt] lib: Skip aliased bsd ABI ring if bsd2 is available Chris Wilson
2018-02-21 12:17 ` [PATCH igt v2] " Chris Wilson
2018-02-21 12:53 ` Tvrtko Ursulin
2018-02-21 12:55 ` Tvrtko Ursulin [this message]
2018-02-21 13:07 ` Chris Wilson
2018-02-21 13:35 ` Tvrtko Ursulin
2018-02-21 13:42 ` Chris Wilson
2018-02-21 13:42 ` Tvrtko Ursulin
2018-02-21 13:45 ` Chris Wilson
2018-02-21 12:25 ` [PATCH igt] " Tvrtko Ursulin
2018-02-21 12:29 ` Chris Wilson
2018-02-21 18:33 ` ✗ Fi.CI.BAT: warning for lib: Skip aliased bsd ABI ring if bsd2 is available (rev2) 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=f1135129-25fc-3d83-26b3-3f3d52f206ab@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.