search for: l55

Displaying 5 results from an estimated 5 matches for "l55".

Did you mean: 55
2019 Aug 19
3
[ORC] Removing / replacing JITDylibs
...ing the ExecutionEngine that was created for each "JITDylib". Should I do the same with ExecutionSessions? For reference, here's the short bit of code I'm playing with for linking with ORC: https://github.com/halo-project/llvm/blob/master/compiler-rt/lib/halomon/DynamicLinker.h#L55 Thanks, Kavon -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190819/ae346237/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: appli...
2014 Aug 11
2
Behavior of disk caching with qcow2 disks
Hello, I am running several virtualization servers with QEMU 1.4.x and libvirt 1.0.2 on Ubuntu 12.04 and am working on optimizing the cache= and aio= options for the virtual machines. These VM images are mostly qcow2, and are served both from a local ext4 filesystem (with data=ordered,barrier) and from an NFS mountpoint (with sync). The local filesystem sits on top of an md software RAID of SATA
2001 Mar 07
1
Minor bug in maketitle.pl (with bug correction) (PR#864)
...: $lc = 16; L44: $rc = 72; L45: $old = $package; L46: $len = length($old); L47: if ($len > $lc - 3) { L48: $S = $old; L49: $old = ""; ### Forgot to this line. L50: for ($j = 1; $j < $lc; $j++) { L51: $old = $old . ' '; L52: } L53: } L54: else { L55: for ($j = 1; $j < $lc - $len; $j++) { L56: $old = $old . ' '; L57: } L58: } -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or...
2014 Aug 12
0
Re: Behavior of disk caching with qcow2 disks
...t. Looking at `qemu-img` source[1], 'cache=writeback' seems to be the default. That's also corroborated by this[2] (Rich's blog, and libguestfs/virt-tools lead developer). [1] http://git.qemu.org/?p=qemu.git;a=blob;f=qemu-img.c;h=d4518e724f848a6ff8ffaf61656d080de5a08f03;hb=HEAD#l55 [2] http://rwmj.wordpress.com/2013/09/02/new-in-libguestfs-allow-cache-mode-to-be-selected/ > Which is correct? "cache=writeback" > How is the cache mode set by default (if cache= is not > specified)? It's compiled into the binary. > My second question is can cach...
2010 Apr 15
2
Should umask takes effect when we create device file via mknod?
Hi all, Currently, umask takes effect when we create device file via mknod, as bellow commands show: ><fs> mknod-b 0760 8 1 /dev/sdf ><fs> ll /dev/sdf brwxr----- 1 root root 8, 1 Apr 15 11:10 /sysroot/dev/sdf But I wonder whether it is reasonable? For mknod(1), when we use option -m mode, we set file permission bits to MODE, not a=rw - umask. Should this also be applicable