Displaying 20 results from an estimated 26 matches for "258,13".
Did you mean:
238,13
2011 Aug 15
0
[PATCH node] Don't start ntp daemons until networking is started
...os.system("service ntpd stop &> /dev/null")
+ os.system("service ntpdate start &> /dev/null")
+ os.system("service ntpd start &> /dev/null")
def save_network_configuration(self):
net_configured=0
@@ -255,10 +258,13 @@ class Network:
for nic in self.CONFIGURED_NICS:
ovirt_store_config("%s%s" % (self.IFSCRIPTS_PATH, nic) )
ovirt_store_config(self.NTP_CONFIG_FILE)
+ augtool("set", "/files/etc/sysconfig/network/NETWORKING", "yes")
+...
2019 Jan 05
0
[PATCH nbdkit v2 06/11] plugins: Return NBD_FLAG_CAN_MULTI_CONN from some readonly plugins.
...py_open,
.get_size = floppy_get_size,
+ .can_multi_conn = floppy_can_multi_conn,
.pread = floppy_pread,
.errno_is_preserved = 1,
};
diff --git a/plugins/iso/iso.c b/plugins/iso/iso.c
index 7ed5e7a..7431b48 100644
--- a/plugins/iso/iso.c
+++ b/plugins/iso/iso.c
@@ -258,6 +258,13 @@ iso_get_size (void *handle)
return statbuf.st_size;
}
+/* Serves the same data over multiple connections. */
+static int
+iso_can_multi_conn (void *handle)
+{
+ return 1;
+}
+
/* Read data from the file. */
static int
iso_pread (void *handle, void *buf, uint32_t count, uint64...
2020 Nov 03
0
[patch V3 23/37] sched: Make migrate_disable/enable() independent of RT
...empt_offset) { }
# define might_sleep() do { might_resched(); } while (0)
# define cant_sleep() do { } while (0)
+# define cant_migrate() do { } while (0)
# define sched_annotate_sleep() do { } while (0)
# define non_block_start() do { } while (0)
# define non_block_end() do { } while (0)
@@ -258,13 +272,6 @@ extern void __cant_sleep(const char *fil
#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
-#ifndef CONFIG_PREEMPT_RT
-# define cant_migrate() cant_sleep()
-#else
- /* Placeholder for now */
-# define cant_migrate() do { } while (0)
-#endif
-
/**
* abs -...
2020 Aug 20
0
[PATCH nbdkit 12/13] wrapper: Port the wrapper to run on Windows.
...ers/%s/.libs/nbdkit-%s-filter.so",
+ passthru_format ("--filter="
+ "%s/filters/%s/.libs/nbdkit-%s-filter." SOEXT,
builddir, optarg, optarg);
else
passthru_format ("--filter=%s", optarg);
@@ -258,13 +306,13 @@ main (int argc, char *argv[])
if (is_short_name (argv[optind])) {
/* Special plugins written in Perl. */
if (is_perl_plugin (argv[optind])) {
- passthru_format ("%s/plugins/perl/.libs/nbdkit-perl-plugin.so",
+ passthru_format ("%s/plugin...
2013 Mar 07
4
[PATCH 0/4] Small refactorings of the protocol layer.
As the start of work to add remote support, I'm taking a close look at
the protocol layer in the library. These are some small cleanups.
Rich.
2008 Mar 30
3
[LLVMdev] Being able to know the jitted code-size before emitting
Hi everyone,
vmkit requires to know the size of a jitted method before emitting the
method. This allows to allocate the correct size for the method. The
attached patch creates this functionality when the flag SizedMemoryCode
is on.
In order to implement this functionality, i had to virtualize some
MachineCodeEmitter functions.
Is it OK to commit the patch?
Thanks,
Nicolas
--------------
2008 Apr 01
2
[LLVMdev] Being able to know the jitted code-size before emitting
...;
>> #include "llvm/CodeGen/Passes.h"
>> +#include "llvm/CodeGen/SizeEmitter.h"
>> #include "llvm/CodeGen/Collector.h"
>> #include "llvm/Target/TargetOptions.h"
>> #include "llvm/Transforms/Scalar.h"
>> @@ -257,7 +258,13 @@
>>
>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>> PM.add(createMachineFunctionPrinterPass(cerr));
>> +
>> + if (SizedMemoryCode) {
>> + SizeEmitter * SE = new SizeEmitter(&MCE);
>> + addSimpleCodeEmitter(PM, Fast, fal...
2008 Mar 31
0
[LLVMdev] Being able to know the jitted code-size before emitting
...Analysis/LoopPass.h"
> #include "llvm/CodeGen/Passes.h"
> +#include "llvm/CodeGen/SizeEmitter.h"
> #include "llvm/CodeGen/Collector.h"
> #include "llvm/Target/TargetOptions.h"
> #include "llvm/Transforms/Scalar.h"
> @@ -257,7 +258,13 @@
>
> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
> PM.add(createMachineFunctionPrinterPass(cerr));
> +
> + if (SizedMemoryCode) {
> + SizeEmitter * SE = new SizeEmitter(&MCE);
> + addSimpleCodeEmitter(PM, Fast, false, *SE);
> + }
>
>...
2008 Apr 01
0
[LLVMdev] Being able to know the jitted code-size before emitting
..."llvm/CodeGen/Passes.h"
>>> +#include "llvm/CodeGen/SizeEmitter.h"
>>> #include "llvm/CodeGen/Collector.h"
>>> #include "llvm/Target/TargetOptions.h"
>>> #include "llvm/Transforms/Scalar.h"
>>> @@ -257,7 +258,13 @@
>>>
>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>> +
>>> + if (SizedMemoryCode) {
>>> + SizeEmitter * SE = new SizeEmitter(&MCE);
>>> + addSimpl...
2008 Apr 04
3
[LLVMdev] Being able to know the jitted code-size before emitting
...asses.h"
>>>> +#include "llvm/CodeGen/SizeEmitter.h"
>>>> #include "llvm/CodeGen/Collector.h"
>>>> #include "llvm/Target/TargetOptions.h"
>>>> #include "llvm/Transforms/Scalar.h"
>>>> @@ -257,7 +258,13 @@
>>>>
>>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>>> +
>>>> + if (SizedMemoryCode) {
>>>> + SizeEmitter * SE = new SizeEmitter(&MCE);
&g...
2005 Jan 10
1
update for 4.11 Security Officer-supported branches
Hello...
In regards to http://www.freebsd.org/security/ , from what I understand
the FreeBSD 4.x branch is generally winding down in favor of the 5.x/6.x
branches. It would be nice to know ahead of time if 4.11 will also be
an extended release, or if that would fall to 4.12. For those of
running 4.8 (expiring about the same time as 4.11 is released) we would
be in a better position to know
2008 Apr 05
2
[LLVMdev] Being able to know the jitted code-size before emitting
...#include "llvm/CodeGen/SizeEmitter.h"
>>>>>> #include "llvm/CodeGen/Collector.h"
>>>>>> #include "llvm/Target/TargetOptions.h"
>>>>>> #include "llvm/Transforms/Scalar.h"
>>>>>> @@ -257,7 +258,13 @@
>>>>>>
>>>>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>>>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>>>>> +
>>>>>> + if (SizedMemoryCode) {
>>>>>> + Si...
2011 Dec 06
17
[PATCH v4 00/12] virtio: s4 support
Hi,
These patches add support for S4 to virtio (pci) and all drivers.
For each driver, all vqs are removed before hibernation, and then
re-created after restore. Some driver-specific uninit and init work
is also done in the freeze and restore functions.
All the drivers in testing work fine:
* virtio-blk is used for the only disk in the VM, IO works fine before
and after. 'dd
2011 Dec 06
17
[PATCH v4 00/12] virtio: s4 support
Hi,
These patches add support for S4 to virtio (pci) and all drivers.
For each driver, all vqs are removed before hibernation, and then
re-created after restore. Some driver-specific uninit and init work
is also done in the freeze and restore functions.
All the drivers in testing work fine:
* virtio-blk is used for the only disk in the VM, IO works fine before
and after. 'dd
2008 Apr 05
0
[LLVMdev] Being able to know the jitted code-size before emitting
...lvm/CodeGen/SizeEmitter.h"
>>>>>>> #include "llvm/CodeGen/Collector.h"
>>>>>>> #include "llvm/Target/TargetOptions.h"
>>>>>>> #include "llvm/Transforms/Scalar.h"
>>>>>>> @@ -257,7 +258,13 @@
>>>>>>>
>>>>>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>>>>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>>>>>> +
>>>>>>> + if (SizedMemoryCode) {
>>>&...
2008 Apr 04
0
[LLVMdev] Being able to know the jitted code-size before emitting
...t;>>> +#include "llvm/CodeGen/SizeEmitter.h"
>>>>> #include "llvm/CodeGen/Collector.h"
>>>>> #include "llvm/Target/TargetOptions.h"
>>>>> #include "llvm/Transforms/Scalar.h"
>>>>> @@ -257,7 +258,13 @@
>>>>>
>>>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>>>> +
>>>>> + if (SizedMemoryCode) {
>>>>> + SizeEmitter * SE = new Siz...
2008 Apr 07
2
[LLVMdev] Being able to know the jitted code-size before emitting
...Emitter.h"
>>>>>>>> #include "llvm/CodeGen/Collector.h"
>>>>>>>> #include "llvm/Target/TargetOptions.h"
>>>>>>>> #include "llvm/Transforms/Scalar.h"
>>>>>>>> @@ -257,7 +258,13 @@
>>>>>>>>
>>>>>>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>>>>>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>>>>>>> +
>>>>>>>> + if (SizedMemoryC...
2008 Apr 07
0
[LLVMdev] Being able to know the jitted code-size before emitting
...>>>>>>>>> #include "llvm/CodeGen/Collector.h"
>>>>>>>>> #include "llvm/Target/TargetOptions.h"
>>>>>>>>> #include "llvm/Transforms/Scalar.h"
>>>>>>>>> @@ -257,7 +258,13 @@
>>>>>>>>>
>>>>>>>>> if (addPreEmitPass(PM, Fast) && PrintMachineCode)
>>>>>>>>> PM.add(createMachineFunctionPrinterPass(cerr));
>>>>>>>>> +
>>>>>>>>>...
2019 Jan 05
15
[PATCH nbdkit v2 01/11] server: Implement NBD_FLAG_CAN_MULTI_CONN.
For existing commits, this is almost identical to v1, except that I
updated some commit messages and reordered the commits in a somewhat
more logical sequence.
The main changes are the extra commits:
[06/11] plugins: Return NBD_FLAG_CAN_MULTI_CONN from some readonly plugins.
- Readonly plugins that can set the flag unconditionally.
[09/11] partitioning: Return NBD_FLAG_CAN_MULTI_CONN.
[10/11]
2011 Sep 01
9
[PATCH V4 0/3] xen-blkfront/blkback discard support
Dear list,
This is the V4 of the trim support for xen-blkfront/blkback,
Now we move BLKIF_OP_TRIM to BLKIF_OP_DISCARD, and dropped all
"trim" stuffs in the patches, and use "discard" instead.
Also we updated the helpers of blkif_x86_{32|64}_request or we
will meet problems using a non-native protocol.
And this patch has been tested with both SSD and raw file,
with SSD we will