<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Segoe UI Emoji";
        panose-1:2 11 5 2 4 2 4 2 2 3;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">Thanks Daniel, more below.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<div style="border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0in 0in 0in">
<p class="MsoNormal"><b>From:</b> Daniel Vetter <daniel@ffwll.ch> <br>
<b>Sent:</b> Wednesday, May 20, 2020 12:41 AM<br>
<b>To:</b> Steve Pronovost <spronovo@microsoft.com><br>
<b>Cc:</b> Dave Airlie <airlied@gmail.com>; Sasha Levin <sashal@kernel.org>; linux-hyperv@vger.kernel.org; Stephen Hemminger <sthemmin@microsoft.com>; Ursulin, Tvrtko <tvrtko.ursulin@intel.com>; Greg Kroah-Hartman <gregkh@linuxfoundation.org>; Haiyang Zhang
 <haiyangz@microsoft.com>; LKML <linux-kernel@vger.kernel.org>; dri-devel <dri-devel@lists.freedesktop.org>; Chris Wilson <chris@chris-wilson.co.uk>; Linux Fbdev development list <linux-fbdev@vger.kernel.org>; Iouri Tarassov <iourit@microsoft.com>; Deucher,
 Alexander <alexander.deucher@amd.com>; KY Srinivasan <kys@microsoft.com>; Wei Liu <wei.liu@kernel.org>; Hawking Zhang <Hawking.Zhang@amd.com><br>
<b>Subject:</b> Re: [EXTERNAL] Re: [RFC PATCH 0/4] DirectX on Linux<o:p></o:p></p>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<div>
<p class="MsoNormal">Hi Steve,<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">Sounds all good, some more comments and details below.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<div>
<p class="MsoNormal">On Wed, May 20, 2020 at 5:47 AM Steve Pronovost <<a href="mailto:spronovo@microsoft.com" target="_blank">spronovo@microsoft.com</a>> wrote:<o:p></o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in">
<p class="MsoNormal">Hey guys,<br>
<br>
Thanks for the discussion. I may not be able to immediately answer all of your questions, but I'll do my best
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>.<br>
<br>
drivers/hyperv sounds like it could be a better location. We weren't too sure where to put this, we though /drivers/gpu would be appropriate given this deal with GPUs, but I get your point... this is a vGPU driver that really only works when being run under
 Hyper-V, so drivers/hyperv is likely more appropriate.<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">I think "it's a virtual gpu" is the wrong sales pitch, as is "only runs on $platform". We have lots of drm drivers in drivers/gpu that fit that bill. The better pitch I think is "it's a not a gpu, it's a dx12 protocol pipe" and "we actually
 do not want to integrate with the linux gpu ecosystem and primitives, we want to integrate with dx12 ecosystem and primitives to make the seamless rdp/rail/vail stuff work nicely". Below some more thoughts on the technical said.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">[spronovo] Agreed. As I mentioned in another reply, that protocol isn’t tied to DX… but the point you are making is still valid. This is really a projection of the Windows native abstraction of a GPU that windows user mode driver (dx, gl,
 cl, vulkan, cuda, etc…) are familiar with and use to communicate with the GPU… This effectively enable porting of these user mode driver to Linux inside of WSL and allow them to share the GPU with the host. Our goal is to offer CL/EGL/GLX/CUDA/… API support
 for applications running inside of WSL and integrate their output on the Windows desktop through the Wayland compositor we are building. The fact that we are using layer to implement some of these APIs (to reduce our partners work among other thing) is just
 an implementation details that most application shouldn’t have to worry about… “it just works”
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>. From that perspective we’re fine moving the driver under a different node than /driver/gpu
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>.<o:p></o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in">
<p class="MsoNormal"><br>
In term of presentation, I need to clarify a few things. We announced today that we're also adding support for Linux GUI applications. The way this will work is roughly as follow. We're writing a Wayland compositor that will essentially bridge over RDP-RAIL
 (RAIL=Remote Application Integrated Locally). We're starting from a Weston base. Weston already has an RDP Backend, but that's for a full desktop remoting scheme. Weston draws a desktop and remote it over RDP... and then you can peek at that desktop using
 an rdp client on the Windows side. RAIL works differently. In that case our wayland compositor no longer paint a desktop... instead it simply forward individual visual / wl_surface over the RDP RAIL channel such that these visual can be displayed on the Windows
 desktop. The RDP client create proxy window for each of these top level visual and their content is filled with the data coming over the RDP channel. All pixels are owned by the RDP server/WSL... so these windows looks different than native window are they
 are painted and themed by WSL. The proxy window on the host gather input and inject back over RDP... This is essentially how application remoting works on windows and this is all publicly documented as part of the various RDP protocol specification. As a matter
 of fact, for the RDP server on the Weston side we are looking at continue to leverage FreeRDP (and provide fixes/enhancement as needed to the public project). Further, we're looking at further improvement down this path to avoid having to copy the content
 over the RAIL channel and instead just share/swap buffer between the guest and the host. We have extension to the RDP protocol, called VAIL (Virtualized Application Integrated Locally) which does that today. Today this is only use in Windows on Windows for
 very specific scenario. We're looking at extending the public RDP protocol with these VAIL extension to make this an official Microsoft supported protocol which would allow us to target this in WSL. We have finished designing this part in details. Our goal
 would be to leverage something along the line of wl_drm, dma-buf, dma-fence, etc... This compositor and all our contribution to FreeRDP will be fully open source, including our design doc. We're not quite sure yet whether this will be offered as a separate
 project entirely distinct from it's Weston root... or if we'll propose an extension to Weston to operate in this mode. We would like to build it such that in theory any Wayland compositor could add support for this mode of operation if they want to remote
 application to a Windows host (over the network, or on the same box).<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">Sounds like a solid plan for presentation. I think this is all up to wayland/weston folks to figure out with you, from the kernel side I have only one concern (and I discussed that with a few folks already on irc, I think they're at least
 on this thread involved within microsoft too in some form): If we do integrate with linux concepts like wl_drm/dma-buf/fence and so on then we end up with a normal gpu driver, with with lots of blobby components all around that can't be opened (since large
 chunks written by hw vendors, so nothing microsoft can do about them). That's the awkward exception (why microsoft but not other gpu hw vendors/plaforms/whatever?) that we need to avoid.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">But wayland doesn't really need dma-buf and the wl_drm protocols afaiui, as long as the egl extensions work you can have whatever private wayland protocol in your winsys code you want to shovel the buffers and syncobj from client to the
 wayland-rdp-rail compositor. If that uses dx12 native handles for these things we side-step the awkward exception question for linux gpu stack since it all stays 100% contained in drivers/hv. Just try to avoid the nvidia fail of insisting that you need your
 own set of egl extensions (egl_streams and egl_drm_kms_reinvented_but_badly and a few others iirc) for everything, that makes it very painful for all the compositor projects since they need duplicated code for no good reason :-)<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">[spronovo] Agreed. I haven’t fully dig into the details for the VAIL enhancement to our Wayland compositor that enables buffer sharing/swapping. This is something we do on window and are quite familiar with the mechanic/concept around this…
 but new to doing this under Wayland. I’m sharing early thinking so apology if I get some stuff wrong
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>… I fundamentally agree with the spirit of what you are saying. Fundamentally our goal here is that we want to avoid having Wayland client do anything non-standard to interop with our projected graphics
 stack. We want Wayland client to work unmodified. It’s not entirely clear to me at the moment whether this buffer handshake is entirely hidden inside of Mesa (where we could do whatever we want as you say, and just reuse what we already have) or visible to
 some Wayland client, in which case we would want to ensure we present a public interface that is compatible. I gather from your suggestion that it is the former. In a nutshell we want to be as standard as possible so things just work and avoid having to chase
 a never ending set of app compat problem <span style="font-family:"Segoe UI Emoji",sans-serif">
😊</span>.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">Also looking at the fun the virtio folks have right now trying to get virgl dma-buf handles in the guest shared with other virtio devices or virgl instance in some other guest and getting it working ... If you avoid the dma-buf integration
 that might also sidestep a lot of technical headaches and be the simpler solution. At least as long as we're talking about wsl2 only.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">[spronovo] Yeah, will definitely look into this.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in">
<p class="MsoNormal"><br>
We see /dev/dxg really as a projection of the GPU when running in WSL such that the GPU can be shared between WSL and the host... not something that would coexist "at the same time" with a real DRM GPU.<br>
<br>
We have consider the possibility of bringing DX to Linux with no Windows cord attached. I'm not ready to discuss this at this time
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>... but in the hypothetical that we were do this, DX would be running on top of DRI/DRM on native Linux. We likely would be contributing some changes to DRM to address area of divergence and get
 better mapping for our user mode driver, but we wouldn't try to shoehorn /dev/dxg into the picture. In that hypothetical world, we would essentially have DX target DRM on native Linux and DX continue to target DXG in WSL to share the GPU with the host. I think
 this further reinforce the point you guys were making that the right place for our current dxgkrnl driver to live in would be /drivers/hyperv/dxgkrnl. In insight, I totally agree
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>.<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal"> <o:p></o:p></p>
</div>
<div>
<p class="MsoNormal">We had a pile of discussions on irc about some of the ideas floating around for extending drm with some of the newer memory/sync concepts. So very much interested, but that's indeed a different fish and most likely will look a lot different
 to the dxgkrnl interface, while ofc still aiming to give the same power to apps. At least that's the goal, but aside from some prototype in some place this really doesn't exist yet anywhere.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">[spronovo] There are indeed some very interesting and hard challenges if we wanted to do this
<span style="font-family:"Segoe UI Emoji",sans-serif">😊</span>. But yeah, this would be totally separate from the dxgkrnl interface. Dxgkrnl is really meant for WSL (or Linux in a Windows hosted VM)... which we should have made clearer and avoid some of the
 confusion.<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in">
<p class="MsoNormal"><br>
I think this cover all questions, let me know if I missed anything.<o:p></o:p></p>
</blockquote>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<p class="MsoNormal">I think it's all good.<o:p></o:p></p>
</div>
<div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<div>
<p class="MsoNormal">Cheers, Daniel<o:p></o:p></p>
</div>
<div>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;margin-left:4.8pt;margin-right:0in">
<p class="MsoNormal"><br>
Thanks,<br>
Steve<br>
<br>
-----Original Message-----<br>
From: Daniel Vetter <<a href="mailto:daniel@ffwll.ch" target="_blank">daniel@ffwll.ch</a>>
<br>
Sent: Tuesday, May 19, 2020 4:01 PM<br>
To: Dave Airlie <<a href="mailto:airlied@gmail.com" target="_blank">airlied@gmail.com</a>><br>
Cc: Sasha Levin <<a href="mailto:sashal@kernel.org" target="_blank">sashal@kernel.org</a>>;
<a href="mailto:linux-hyperv@vger.kernel.org" target="_blank">linux-hyperv@vger.kernel.org</a>; Stephen Hemminger <<a href="mailto:sthemmin@microsoft.com" target="_blank">sthemmin@microsoft.com</a>>; Ursulin, Tvrtko <<a href="mailto:tvrtko.ursulin@intel.com" target="_blank">tvrtko.ursulin@intel.com</a>>;
 Greg Kroah-Hartman <<a href="mailto:gregkh@linuxfoundation.org" target="_blank">gregkh@linuxfoundation.org</a>>; Haiyang Zhang <<a href="mailto:haiyangz@microsoft.com" target="_blank">haiyangz@microsoft.com</a>>; LKML <<a href="mailto:linux-kernel@vger.kernel.org" target="_blank">linux-kernel@vger.kernel.org</a>>;
 dri-devel <<a href="mailto:dri-devel@lists.freedesktop.org" target="_blank">dri-devel@lists.freedesktop.org</a>>; Chris Wilson <<a href="mailto:chris@chris-wilson.co.uk" target="_blank">chris@chris-wilson.co.uk</a>>; Steve Pronovost <<a href="mailto:spronovo@microsoft.com" target="_blank">spronovo@microsoft.com</a>>;
 Linux Fbdev development list <<a href="mailto:linux-fbdev@vger.kernel.org" target="_blank">linux-fbdev@vger.kernel.org</a>>; Iouri Tarassov <<a href="mailto:iourit@microsoft.com" target="_blank">iourit@microsoft.com</a>>; Deucher, Alexander <<a href="mailto:alexander.deucher@amd.com" target="_blank">alexander.deucher@amd.com</a>>;
 KY Srinivasan <<a href="mailto:kys@microsoft.com" target="_blank">kys@microsoft.com</a>>; Wei Liu <<a href="mailto:wei.liu@kernel.org" target="_blank">wei.liu@kernel.org</a>>; Hawking Zhang <<a href="mailto:Hawking.Zhang@amd.com" target="_blank">Hawking.Zhang@amd.com</a>><br>
Subject: [EXTERNAL] Re: [RFC PATCH 0/4] DirectX on Linux<br>
<br>
On Wed, May 20, 2020 at 12:42 AM Dave Airlie <<a href="mailto:airlied@gmail.com" target="_blank">airlied@gmail.com</a>> wrote:<br>
><br>
> On Wed, 20 May 2020 at 02:33, Sasha Levin <<a href="mailto:sashal@kernel.org" target="_blank">sashal@kernel.org</a>> wrote:<br>
> ><br>
> > There is a blog post that goes into more detail about the bigger <br>
> > picture, and walks through all the required pieces to make this <br>
> > work. It is available here:<br>
> > <a href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fde" target="_blank">
https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fde</a><br>
> > <a href="https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fvblogs.microsoft.com%2F&data=02%7C01%7Cspronovo%40microsoft.com%7C5e9c6fb0890844aef87c08d7fc91265e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637255572659005449&sdata=gVJvYw%2BRkrdugZw5LzWbYXzoAoT2KhVjRZLs%2Ft%2BG3aY%3D&reserved=0" target="_blank">
vblogs.microsoft.com</a>%2Fdirectx%2Fdirectx-heart-linux&amp;data=02%7C01%7Cspronovo%<a href="https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2F40microsoft.com%2F&data=02%7C01%7Cspronovo%40microsoft.com%7C5e9c6fb0890844aef87c08d7fc91265e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637255572659015442&sdata=0TfOBiUpDLctMq7EZmK7N3xdPFeqauzsXJPODRCErXU%3D&reserved=0" target="_blank">40microsoft.com</a>%7C3f18e46192b24cccf6a008d7fc489063%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637255260910730243&amp;sdata=IRRknzg%2F6Myzj3JXESN7GgmN6AcUV3DxhL95P%2ButtCw%3D&amp;reserved=0
 . The rest of this cover letter will focus on the Linux Kernel bits.<br>
> ><br>
> > Overview<br>
> > ========<br>
> ><br>
> > This is the first draft of the Microsoft Virtual GPU (vGPU) driver. <br>
> > The driver exposes a paravirtualized GPU to user mode applications <br>
> > running in a virtual machine on a Windows host. This enables <br>
> > hardware acceleration in environment such as WSL (Windows Subsystem <br>
> > for Linux) where the Linux virtual machine is able to share the GPU <br>
> > with the Windows host.<br>
> ><br>
> > The projection is accomplished by exposing the WDDM (Windows Display <br>
> > Driver Model) interface as a set of IOCTL. This allows APIs and user <br>
> > mode driver written against the WDDM GPU abstraction on Windows to <br>
> > be ported to run within a Linux environment. This enables the port <br>
> > of the<br>
> > D3D12 and DirectML APIs as well as their associated user mode driver <br>
> > to Linux. This also enables third party APIs, such as the popular <br>
> > NVIDIA Cuda compute API, to be hardware accelerated within a WSL environment.<br>
> ><br>
> > Only the rendering/compute aspect of the GPU are projected to the <br>
> > virtual machine, no display functionality is exposed. Further, at <br>
> > this time there are no presentation integration. So although the <br>
> > D3D12 API can be use to render graphics offscreen, there is no path <br>
> > (yet) for pixel to flow from the Linux environment back onto the <br>
> > Windows host desktop. This GPU stack is effectively side-by-side <br>
> > with the native Linux graphics stack.<br>
><br>
> Okay I've had some caffiene and absorbed some more of this.<br>
><br>
> This is a driver that connects a binary blob interface in the Windows <br>
> kernel drivers to a binary blob that you run inside a Linux guest.<br>
> It's a binary transport between two binary pieces. Personally this <br>
> holds little of interest to me, I can see why it might be nice to have <br>
> this upstream, but I don't forsee any other Linux distributor ever <br>
> enabling it or having to ship it, it's purely a WSL2 pipe. I'm not <br>
> saying I'd be happy to see this in the tree, since I don't see the <br>
> value of maintaining it upstream, but it probably should just exists <br>
> in a drivers/hyperv type area.<br>
<br>
Yup as-is (especially with the goal of this being aimed at ml/compute<br>
only) drivers/hyperv sounds a bunch more reasonable than drivers/gpu.<br>
<br>
> Having said that, I hit one stumbling block:<br>
> "Further, at this time there are no presentation integration. "<br>
><br>
> If we upstream this driver as-is into some hyperv specific place, and <br>
> you decide to add presentation integration this is more than likely <br>
> going to mean you will want to interact with dma-bufs and dma-fences.<br>
> If the driver is hidden away in a hyperv place it's likely we won't <br>
> even notice that feature landing until it's too late.<br>
<br>
I've recently added regex matches to MAINTAINERS so we'll see dma_buf/fence/anything show up on dri-devel. So that part is solved hopefully.<br>
<br>
> I would like to see a coherent plan for presentation support (not <br>
> code, just an architectural diagram), because I think when you <br>
> contemplate how that works it will change the picture of how this <br>
> driver looks and intergrates into the rest of the Linux graphics <br>
> ecosystem.<br>
<br>
Yeah once we have the feature-creep to presentation support all the integration fun starts, with all the questions about "why does this not look like any other linux gpu driver". We have that already with nvidia insisting they just can't implement any of the
 upstream gpu uapi we have, but at least they're not in-tree, so not our problem from an upstream maintainership pov.<br>
<br>
But once this dx12 pipe is landed and then we want to extend it it's still going to have all the "we can't ever release the sources to any of the parts we usually expect to be open for gpu drivers in upstream"<br>
problems. Then we're stuck at a rather awkward point of why one vendor gets an exception and all the others dont.<br>
<br>
> As-is I'd rather this didn't land under my purview, since I don't see <br>
> the value this adds to the Linux ecosystem at all, and I think it's <br>
> important when putting a burden on upstream that you provide some <br>
> value.<br>
<br>
Well there is some in the form of "more hw/platform support". But given that gpus evolved rather fast, including the entire integration ecosystem (it's by far not just the hw drivers that move quickly). So that value deprecates a lot faster than for other kernel
 subsystems.<br>
And all that's left is the pain of not breaking anything without actually being able to evolve the overall stack in any meaningful way.<br>
-Daniel<br>
--<br>
Daniel Vetter<br>
Software Engineer, Intel Corporation<br>
+41 (0) 79 365 57 48 - <br>
+<a href="https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fblog.f+fwll.ch%2F&data=02%7C01%7Cspronovo%40microsoft.com%7C3f18e46192b24c+ccf6a008d7fc489063%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C6372552" target="_blank">https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fblog.f<br>
+fwll.ch%2F&amp;data=02%7C01%7Cspronovo%40microsoft.com%7C3f18e46192b24c<br>
+ccf6a008d7fc489063%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C6372552</a><br>
+60910735230&amp;sdata=hAIV1wJ29WF9IXTvJm3dr4StCwPzF0GdO2iWPyfnElg%3D&am<br>
+p;reserved=0<o:p></o:p></p>
</blockquote>
</div>
<p class="MsoNormal"><br clear="all">
<br>
-- <o:p></o:p></p>
<div>
<p class="MsoNormal">Daniel Vetter<br>
Software Engineer, Intel Corporation<br>
+41 (0) 79 365 57 48 - <a href="https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fblog.ffwll.ch%2F&data=02%7C01%7Cspronovo%40microsoft.com%7C5e9c6fb0890844aef87c08d7fc91265e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637255572659025436&sdata=me6tZuh9c4YKPTcOdY5%2FlgE%2B52usSI%2F5QRUCsCy%2FTfQ%3D&reserved=0" target="_blank">
http://blog.ffwll.ch</a><o:p></o:p></p>
</div>
</div>
</div>
</body>
</html>