<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Jan 24, 2017 at 8:17 AM, Emil Velikov <span dir="ltr"><<a href="mailto:emil.l.velikov@gmail.com" target="_blank">emil.l.velikov@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 24 January 2017 at 15:41, Chad Versace <<a href="mailto:chadversary@chromium.org">chadversary@chromium.org</a>> wrote:<br>
> On Tue 24 Jan 2017, Emil Velikov wrote:<br>
>> From: Emil Velikov <<a href="mailto:emil.velikov@collabora.com">emil.velikov@collabora.com</a>><br>
>><br>
>> Strictly speaking we could add support for v2 and earlier. At the same<br>
>> time, those tend to be buggy and as such there's limited testing done.<br>
><br>
> I'm confused by the claim of "limited testing". Before my patch landed<br>
> that upgraded anvil to loader interface v3, the driver only supported<br>
> loader interface v1. And any differences between v1 and v2 are<br>
> negligible enough to not be the cause of any crash.<br>
><br>
> So... is the real problem<br>
>     a. anvil doesn't support loader interface v2, or<br>
>     b. Fedora 25 ships a buggy loader, and this patch effectively forces<br>
>        the user to upgrade the loader to a version in which the bug is<br>
>        fixed.<br>
><br>
> I have difficulty understanding how (a) could possibly be the problem.<br>
> Did some patches land in src/vulkan/wsi that broke the v2 interface? If<br>
> so, then this patch is probably justified.<br>
><br>
> If the actual problem is (b), then I believe this patch is the wrong way<br>
> to fix it. The real fix should go into the loader. And this patch<br>
> prevents the driver working on systems where it should work.<br>
><br>
</span>I fully agree with your reasoning.<br>
<br>
B is the one to blame here. I may have gone overzealous with the<br>
wording/approach, but the idea is there - how do we deal with issues,<br>
reported against Mesa (ANV/RADV) where the problems seems to be in the<br>
loader.<br>
We don't want to have the behaviour we had with OpenGL where people<br>
jump to assumptions that ANV/RADV is broken because "it works" with<br>
binary driver FOO. Even when the crash/issue is outside Mesa.<br>
<br>
Looking at git log (as per the bugreport) I wonder if encouraging<br>
people to use updated loader (as this patch does) isn't that bad of a<br>
thing. Esp. since distros might not always see a reason otherwise.<br></blockquote><div><br></div><div>For what it's worth, Fedora is in the process of updating their loader...<br><br></div><div>Also, I think we will want to do this eventually but not yet.  One of these days, I'm going to rewrite the WSI implementation *again* to make it do something useful in CreateFooSurface.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5">
> More comments below.<br>
><br>
>> Cc: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br>
>> Cc: Shawn Starr <<a href="mailto:shawn.starr@rogers.com">shawn.starr@rogers.com</a>><br>
>> Cc: Chad Versace <<a href="mailto:chadversary@chromium.org">chadversary@chromium.org</a>><br>
>> Bugzilla: <a href="https://bugs.freedesktop.org/show_bug.cgi?id=99446" rel="noreferrer" target="_blank">https://bugs.freedesktop.org/<wbr>show_bug.cgi?id=99446</a><br>
>> Signed-off-by: Emil Velikov <<a href="mailto:emil.velikov@collabora.com">emil.velikov@collabora.com</a>><br>
>> ---<br>
>> Slightly pedantic, yet explicitly mentioned in the spec as a way to<br>
>> detect/manage older loader versions. Would have saved us a crash, so I'm<br>
>> wondering if we want it for stable ?<br>
>><br>
>> Shawn considering you still have the old libvulkan.so around can you<br>
>> give this and/or 2/2 a test ?<br>
>> ---<br>
>>  src/intel/vulkan/anv_device.c | 8 ++++++++<br>
>>  1 file changed, 8 insertions(+)<br>
>><br>
>> diff --git a/src/intel/vulkan/anv_device.<wbr>c b/src/intel/vulkan/anv_device.<wbr>c<br>
>> index f80a36a940..e7aa81883a 100644<br>
>> --- a/src/intel/vulkan/anv_device.<wbr>c<br>
>> +++ b/src/intel/vulkan/anv_device.<wbr>c<br>
>> @@ -36,6 +36,8 @@<br>
>><br>
>>  #include "genxml/gen7_pack.h"<br>
>><br>
>> +static uint32_t loader_version;<br>
>> +<br>
>>  struct anv_dispatch_table dtable;<br>
>><br>
>>  static void<br>
>> @@ -739,6 +741,11 @@ VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL vk_icdGetInstanceProcAddr(<br>
>>      VkInstance                                  instance,<br>
>>      const char*                                 pName)<br>
>>  {<br>
>> +   if (loader_version < 3u) {<br>
>> +      fprintf(stderr, "WARNING: ANV supports Loader interface v3 or newer, v%u "<br>
>> +                      "detected. Update your libvulkan.so.\n", loader_version);<br>
>> +      return NULL;<br>
>> +   }<br>
>>     return anv_GetInstanceProcAddr(<wbr>instance, pName);<br>
>>  }<br>
>><br>
>> @@ -2075,6 +2082,7 @@ vk_<wbr>icdNegotiateLoaderICDInterface<wbr>Version(uint32_t* pSupportedVersion)<br>
>>      *          vkDestroySurfaceKHR(), and other API which uses VKSurfaceKHR,<br>
>>      *          because the loader no longer does so.<br>
>>      */<br>
>> +   loader_version = *pSupportedVersion;<br>
>>     *pSupportedVersion = MIN2(*pSupportedVersion, 3u);<br>
>>     return VK_SUCCESS;<br>
>>  }<br>
><br>
> If this patch does land, then This hunk needs fixing. If the driver<br>
> doesn't support loader interface version 2, then the loader spec<br>
> requires that we return VK_ERROR_INCOMPATIBLE_DRIVER here if<br>
> *pSupportedVersion < 3.<br>
><br>
> The loader spec says:<br>
><br>
>     If the ICD receiving the call no longer supports the interface<br>
>     version provided  by the loader (due to deprecation), then it should<br>
>     report VK_ERROR_INCOMPATIBLE_DRIVER error.  Otherwise it sets the<br>
>     value pointed by "pSupportedVersion" to the latest interface version<br>
>     supported by both the ICD and the loader and returns VK_SUCCESS.<br>
<br>
</div></div>Again, fully agree.<br>
<br>
Thanks<br>
<span class="HOEnZb"><font color="#888888">Emil<br>
</font></span><div class="HOEnZb"><div class="h5">______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</div></div></blockquote></div><br></div></div>