Displaying 7 results from an estimated 7 matches for "explicilty".
2020 Sep 25
0
[RFC PATCH 02/24] vhost-vdpa: fix vqs leak in vhost_vdpa_open()
...st_vdpa *v)
>> v->domain = NULL;
>> }
>>
>> +static void vhost_vdpa_cleanup(struct vhost_vdpa *v)
>> +{
>> + vhost_dev_cleanup(&v->vdev);
>> + kfree(v->vdev.vqs);
>> +}
>> +
> Wouldn't it be cleaner to call kfree(vqs) explicilty inside
> vhost_vdpa_open() in case of failure and keep the symetry of
> vhost_dev_init()/vhost_dev_cleanup()?
That's also fine.
See
https://www.mail-archive.com/virtualization at lists.linux-foundation.org/msg42558.html
I will use that for the next version.
Thanks.
>
>>...
2010 Oct 21
1
auto mount of home share
I have searched this list and googled for examples, but have not found
the answer to this question:
I would have thought that all the lines in the smb.conf was setting up
an auto mount of the home share, and I did not have to put it in the
logon.bat script. I have:
[global]
....
domain master = yes
local master = yes
domain logons = yes
logon path = \\%L\profiles\%U
2004 Oct 13
0
RE: [R] debugging non-visible functions
...ere is
> > no way to have imports from a version of a namespace, for example -- and
> > indeed importing from versioned install of namespaces did not work in
> > 2.0.0). Duncan?
>
>
> The reason in the NEWS file is exactly the motivation.
> It is for cases where one explicilty loads a package (A) via the library() function,
> and a different version of that package is imported indirectly
> when loading another package via a dependency on an explicit
> version of A. And this is also the case when two packages (B and C)
> require different versions of the...
2011 Mar 28
0
Draft Application for GSoC 11 - Text extraction libraries - please review
...doing something I love .Also
since I have conceptual knowledge about these aspects , am hoping that that
would come to my aid.
Benefits
The open source community would definitely benifit , so will the xapian
userbase.As of now Omega indexer doesnt provide fileformat support implicilty.It
does explicilty by making user of external programs thus increasing its cpu foot
print.Also for each format 1 or more than 1 externel filter progrma is needed to
be run.We can completely avoid that once this project is over.Also the user base
is likely to increase as it will be getting a indexer along with a be...
2015 Jun 04
5
[LLVMdev] Removing AvailableExternal values in GlobalDCE (was Re: RFC: ThinLTO Impementation Plan)
On Thu, Jun 4, 2015 at 3:58 PM, Duncan P. N. Exon Smith <
dexonsmith at apple.com> wrote:
>
> > Personally, I think the right approach is to add a bool to
> createGlobalDCEPass defaulting to true named something like
> IsAfterInlining. In most standard pass pipelines, GlobalDCE runs after
> inlining for obvious reasons, so the default makes sense. The special case
> is
2020 Sep 24
30
[RFC PATCH 00/24] Control VQ support in vDPA
Hi All:
This series tries to add the support for control virtqueue in vDPA.
Control virtqueue is used by networking device for accepting various
commands from the driver. It's a must to support multiqueue and other
configurations.
When used by vhost-vDPA bus driver for VM, the control virtqueue
should be shadowed via userspace VMM (Qemu) instead of being assigned
directly to Guest. This is
2020 Sep 24
30
[RFC PATCH 00/24] Control VQ support in vDPA
Hi All:
This series tries to add the support for control virtqueue in vDPA.
Control virtqueue is used by networking device for accepting various
commands from the driver. It's a must to support multiqueue and other
configurations.
When used by vhost-vDPA bus driver for VM, the control virtqueue
should be shadowed via userspace VMM (Qemu) instead of being assigned
directly to Guest. This is