Displaying 11 results from an estimated 11 matches for "justwork".
Did you mean:
mustwork
2020 Sep 08
2
[PATCH v4 1/1] drm: allow limiting the scatter list size.
...per device, which
in turn allows virtio to deal with the quirks without the rest of the
kernel knowing about these details.
I also think virtio-gpu can drop the virtio_has_dma_quirk() checks, just
use the dma api path unconditionally and depend on virtio core having
setup dma_ops in a way that it JustWorks[tm]. I'll look into that next.
take care,
Gerd
2020 Sep 08
1
[PATCH v4 1/1] drm: allow limiting the scatter list size.
...ith the quirks without the rest of the
> > kernel knowing about these details.
> >
> > I also think virtio-gpu can drop the virtio_has_dma_quirk() checks, just
> > use the dma api path unconditionally and depend on virtio core having
> > setup dma_ops in a way that it JustWorks[tm]. I'll look into that next.
>
> The comment above vring_use_dma_api() suggests that this has not yet
> happened, that's why I'm asking.
Hmm, wading through the code, seems it indeed happen yet, even though my
testing didn't show any issues. Probably pure luck becaus...
2020 Sep 08
0
[PATCH v4 1/1] drm: allow limiting the scatter list size.
...n allows virtio to deal with the quirks without the rest of the
> kernel knowing about these details.
>
> I also think virtio-gpu can drop the virtio_has_dma_quirk() checks, just
> use the dma api path unconditionally and depend on virtio core having
> setup dma_ops in a way that it JustWorks[tm]. I'll look into that next.
The comment above vring_use_dma_api() suggests that this has not yet
happened, that's why I'm asking. If this has happened then I think it'd be
best if you remove that todo entry and update it, as part of the overall
series to add dma_max_mapping_si...
2009 Mar 26
1
CentOS 5.2 and wired Ethernet on a Macbook Pro?
I recently installed CentOS 5.2 64-bit on a partition on a MacBook Pro 17
inch. It installed just fine, but wired Ethernet is not available. lspci
shows it as nVidia...unknown.
Is it possible to get wired Ethernet running on this laptop under CentOS
without having to create a virtual machine installation of CentOS?
If so, what is the magic?
Thanks.
Scott
2020 Feb 23
5
OwnCloud vs NextCloud
I am planning to install either ownCloud or NextCloud on a CentOS 7 VPS server I control. I have previously used ownCloud on another server but have not updated the host application for quite some time. On this new server, I am not sure which one is the "best" and since I am doing a new install I need to decide which one to use.
Looking at the Android apps for these cloud solutions,
2010 Oct 23
3
Cepstral voice quality not good
Hello list,
I have been using Cepstral's 8KHz voices for my text-to-speech service for
some time now, and have been noticing that the voice quality is really poor,
doesn't matter what phrase I give it to convert. None of the other 8KHz
voices I have ever used were this bad. It doesn't seem good enough system to
be used in a commercial system. Is there any better quality text-to-voice
2015 Apr 04
4
The future of centos
100% with Digimer here.
I think there are no conspiracy theories. IMO RedHat does not want nor does it afford to mess up CentOS.
All this energy should be put into contributing towards to the project, testing, helping out community.
Lucian
--
Sent from the Delta quadrant using Borg technology!
Nux!
www.nux.ro
----- Original Message -----
> From: "Digimer" <lists at
2010 Jan 28
31
[PATCH 0 of 4] aio event fd support to blktap2
Get blktap2 running on pvops.
This mainly adds eventfd support to the userland code. Based on some
prior cleanup to tapdisk-queue and the server object. We had most of
that in XenServer for a while, so I kept it stacked.
1. Clean up IPC and AIO init in tapdisk-server.
[I think tapdisk-ipc in blktap2 is basically obsolete.
Pending a later patch to remove it?]
2. Split tapdisk-queue into
2012 Sep 04
9
[Bug 54512] New: xrandr does not detect screen
https://bugs.freedesktop.org/show_bug.cgi?id=54512
Bug #: 54512
Summary: xrandr does not detect screen
Classification: Unclassified
Product: xorg
Version: unspecified
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2006 Apr 07
8
Why Ruby on Rails won''t become mainstream
Why Ruby on Rails won''t become mainstream
http://beust.com/weblog/archives/000382.html
Kind of interesting, but didn''t convince me. Though, yeah, I can imagine
a lot of naive programmers sticking with PHP and VB (the type of crowd
that also doesn''t run their own servers, so they''re dependent on hosts
offering Rails for them). Rails DOES have an IDE - soon
2020 Sep 07
2
[PATCH v4 1/1] drm: allow limiting the scatter list size.
Add drm_device argument to drm_prime_pages_to_sg(), so we can
call dma_max_mapping_size() to figure the segment size limit
and call into __sg_alloc_table_from_pages() with the correct
limit.
This fixes virtio-gpu with sev. Possibly it'll fix other bugs
too given that drm seems to totaly ignore segment size limits
so far ...
v2: place max_segment in drm driver not gem object.
v3: move