search for: unaudited

Displaying 7 results from an estimated 7 matches for "unaudited".

Did you mean: audited
2019 Aug 02
2
Re: [nbdkit PATCH v2 10/17] plugins: Add .fork_safe field
...39;ll end up in a situation where we have this flag but it's no longer needed. How about instead of this we simply restrict Haiku to the fully serialized mode. Sucks for them, but they can fix it by adding atomic CLOEXEC features ... > + .fork_safe = 0, /* libguestfs uses fork(), unaudited for safety */ libguestfs does use fork and should be safe - we're pretty careful about using CLOEXEC, accept4, etc everywhere. (Also libguestfs doesn't run on Haiku and architecturally that's unlikely to ever happen). Rich. -- Richard Jones, Virtualization Group, Red Hat http://peo...
2019 Aug 02
0
Re: [nbdkit PATCH v2 10/17] plugins: Add .fork_safe field
...that --dump-plugin shows the dynamic crippling (so that we can easily skip tests/test-parallel-file.sh, for example), but I think I can manage to do that by replacing this patch with just blind penalization of non-atomic CLOEXEC. > >> + .fork_safe = 0, /* libguestfs uses fork(), unaudited for safety */ > > libguestfs does use fork and should be safe - we're pretty careful > about using CLOEXEC, accept4, etc everywhere. (Also libguestfs > doesn't run on Haiku and architecturally that's unlikely to ever > happen). Nice to know. That was half of the review...
2014 Jul 06
4
qemu-kvm version for CentOS
WHY CentOS still using qemu-kvm 0.12? What I am need is high version of qemu-kvm for CentOS, but seems like they do not officially provide newest qemu, only qemu 0.12 source code with 3522 patched rpm package. Is there any reasonable to keep low version for qemu-kvm ? or what should I do if I need newest qemu-kvm rpm package? ✉ -- 朴元奎 kerwin
2019 Aug 02
0
[nbdkit PATCH v2 10/17] plugins: Add .fork_safe field
...plugin.c +++ b/plugins/guestfs/guestfs-plugin.c @@ -593,6 +593,7 @@ static struct nbdkit_plugin plugin = { .pread = plugin_guestfs_pread, .pwrite = plugin_guestfs_pwrite, .flush = plugin_guestfs_flush, + .fork_safe = 0, /* libguestfs uses fork(), unaudited for safety */ }; NBDKIT_REGISTER_PLUGIN(plugin) diff --git a/plugins/gzip/gzip.c b/plugins/gzip/gzip.c index c6baa52e..5821d468 100644 --- a/plugins/gzip/gzip.c +++ b/plugins/gzip/gzip.c @@ -222,6 +222,7 @@ static struct nbdkit_plugin plugin = { .close = gzip_close, .get_size...
2017 Nov 06
2
[RFC] Setting the current debug loc when the insertion point changes
...ertPoint(BasicBlock *, BasicBlock::iterator, const DebugLoc &) We'd make this work by renaming SetInsertPoint to SetInsertPointAndDebugLoc and marking it as deprecated. This would make the transition easy (run sed in a loop), we'd get the future API we want, and it becomes easy to find unaudited API calls. vedant > > -- adrian > >> >> OTOH, if we added a method like SetInsertPointAndDebugLoc(), we could incrementally eliminate as many uses of that method as possible. >> >> >>> I also like the idea of renaming the method to make it really ob...
2017 Nov 06
2
[RFC] Setting the current debug loc when the insertion point changes
> On Nov 6, 2017, at 2:32 PM, Adrian Prantl <aprantl at apple.com> wrote: > > >> On Nov 6, 2017, at 2:19 PM, Vedant Kumar <vsk at apple.com> wrote: >> >> Hi everybody, >> >> I'm investigating some correctness issues with debug line table information in optimized code. I've noticed something problematic in IRBuilder. Setting the
2019 Aug 02
23
[nbdkit PATCH v2 00/17] fd leak safety
This is a major rewrite compared to my v1 series, where I've tried a lot harder to ensure that we still accommodate building on Haiku (although I have not actually yet fired up a Haiku VM to try it for myself). I also managed to make the sh plugin fully parallel, on capable platforms. See also my question on patch 10 on whether I've picked the best naming convention. Eric Blake (17):