search for: l48

Displaying 14 results from an estimated 14 matches for "l48".

Did you mean: 48
2020 Jun 07
3
Kill "KillTheDoctor"
...k-builtins). Therefore, I propose to remove KillTheDoctor. Michael [1] https://github.com/llvm/llvm-project/tree/master/llvm/utils/KillTheDoctor [2] https://www.ecosia.org/images?q=%22has+stopped+working%22 [3] https://github.com/llvm/llvm-project/blob/master/llvm/lib/Support/Windows/Signals.inc#L484 [4] https://github.com/llvm/llvm-project/blob/master/llvm/utils/unittest/UnitTestMain/TestMain.cpp#L38 [5] https://devblogs.microsoft.com/oldnewthing/20160204-00/?p=92972 [6] https://github.com/llvm/llvm-project/blob/master/compiler-rt/test/lit.common.cfg.py#L219 [7] https://github.com/llvm/llvm-p...
2019 Jun 09
1
RFC 8314 § 3.3 support at Dovecot submission proxy service?
Hello all, I'm currently wondering whether Dovecot submission proxy service supports RFC 8314 ? 3.3 as well, which means implicit TLS for SMTP submission. https://github.com/dovecot/core/blob/2cbbe9b4829adb184c83dbf780316f4144559054/doc/example-config/conf.d/10-master.conf#L48 from Git master just mentions port 587 like this: service submission-login { inet_listener submission { #port = 587 } } As per RFC 8314 ? 3.3, I would expect the following to work (which I did not try), and if it already works, I even would expect this snippet part of the future Dovecot e...
2017 Feb 08
3
Linking Linux kernel with LLD
...ich intention to jump to startup_64: jmpl *%eax # Jump to the 32-bit entrypoint (https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/boot/pmjump.S#L76) (https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/kernel/head_64.S#L48) It does not happen. Code executes right before jmpl and then fail on this call for me, so startup_64 never called. startup_64 is a part of vmlinux binary. So as you said vmlinux has troubles and after doing readelf -a on LLD linked and bfd linked ones, I found that LLD outputs vmlinux as executa...
2016 Feb 22
2
Reply:Re: how to compile my own libguestfs with the ntfs support ?
Hi rjones, Good catch, thanks a lot. Does it only disable from official rhel/centos RPM with `XXXX-RHEL-7-Reject-use-of-libguestfs-winsupport-features-.patch' in libguestfs while it still work in upstream source code ( e.g. rhel-7.2 branch in https://github.com/libguestfs/libguestfs ) , which option need to enable windows VM ntfs and guestmount command support when i make configure to
2020 Feb 27
12
[Bug 3126] New: Mark the RDomain configuration option unsupported on non-openbsd builds
https://bugzilla.mindrot.org/show_bug.cgi?id=3126 Bug ID: 3126 Summary: Mark the RDomain configuration option unsupported on non-openbsd builds Product: Portable OpenSSH Version: 8.2p1 Hardware: Other OS: Linux Status: NEW Keywords: patch Severity: enhancement
2020 Feb 11
0
Re: [nbdkit PATCH 05/10] plugins: Wire up file-based plugin support for NBD_INFO_INIT_STATE
...'t we stat(2) the file and look at statbuf.st_blocks? > +requires nbdsh -c 'exit (not hasattr (h, "get_init_flags"))' Not wrong, but it's easier to do it like this: https://github.com/libguestfs/nbdkit/blob/5e4745641bb4676f607fdb3f8750dbf6e9516877/tests/test-vsock.sh#L48 Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to virtual machines. Boot with a live CD or over the network (PXE) and turn machines into KVM guests....
2001 Mar 07
1
Minor bug in maketitle.pl (with bug correction) (PR#864)
...generate: com.braju.graphics Bla bla bla... To solve this minor bug, just include a line '$old=""'. See line 49 below. maketitle.pl: L42: $S = ''; L43: $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: } -.-.-....
2017 Feb 17
3
Linking Linux kernel with LLD
...ing is wrong in decompressed code. Next destination point should be startup_64?. https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/kernel/head_64.S#L50<https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/kernel/head_64.S#L48> Though as I mentioned it does not reach it for me. Next step I probably going to do is dump/printf-trace that memory area of decompressed kernel to compare with what produced there when BFD is used. Have no better ideas now. George. -------------- next part -------------- An HTML attachment w...
2016 Feb 22
0
Re: Reply:Re: how to compile my own libguestfs with the ntfs support ?
...ost memory/CPU. FUSE or the fuse.ko kernel module might have its own limits. I don't think we have ever found what they are. During the automated test suite, we test 12 parallel FUSE mounts: https://github.com/libguestfs/libguestfs/blob/master/tests/mount-local/test-parallel-mount-local.c#L48 You could try raising that number, but note that you will hit the libvirt limit (20) unless you either disable libvirt (LIBGUESTFS_BACKEND=direct) or raise the limit in the libvirtd.conf. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming...
2020 Feb 10
2
[nbdkit PATCH 05/10] plugins: Wire up file-based plugin support for NBD_INFO_INIT_STATE
The NBD protocol is adding an extension to let servers advertise initialization state to the client: whether the image contains holes, and whether it is known to read as all zeroes. For file-based plugins, we are already probing lseek(SEEK_HOLE) to learn if extents are supported; a slight tweak to remember if that result is EOF tells us if we are sparse, and a similar lseek(SEEK_DATA) returning
2017 Feb 09
4
Linking Linux kernel with LLD
>That address seems to come from >here: https://github.com/torvalds/linux/blob/5924bbecd0267d87c24110cbe2041b5075173a25/arch/x86/boot/pm.c#L124 > >``` >protected_mode_jump(boot_params.hdr.code32_start, > (u32)&boot_params + (ds() << 4)); >``` > >That boot_params.hdr.code32_start field is probably either invalid (bad reloc or something else causing the
2017 Feb 03
3
Linking Linux kernel with LLD
On Thu, Feb 2, 2017 at 12:38 AM, George Rimar <grimar at accesssoftek.com> wrote: > >As far as the setup, I would recommend setting up qemu for actually > running the LLD-linked kernel and custom bootloader etc. because then you > can have a single >script that rebuilds the bootloader and kernel and > copies the files to the VM. This reduces iteration time significantly.
2019 May 31
4
[libnbd] Simultaneous read and write
This is a continuation of a discussion we were having on IRC. The problems with IRC are it's not recorded and it's hard to have deep technical conversations. I hope this is a decent summary. Problem simply stated: Certain NBD servers (qemu-nbd in particular) are able to simultaneously read and write on a socket. ie. They can be simultaneously reading a request and writing the reply to
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...*$zL1`+ri>;y9d7<1-rn)KHxNkg-vH+ zmsl959~`IqvG~QX{Z3>pQuj7s at hps+Lpj(cG#lV?s9|a=<_wyD8!?QVD}H2g at n&VH znT3g1n2@!sK`iVpH;1zPm9XX9*mC($nr>oi8v)Br>4)bxR?8CDx|{{+&%)ZVsg+I^ zlY;GIVLjWBuwHGzI7#HV6~w~kvQ_|LunALWG3ynivXn&BJwaIunA(D2d-^anR<Yhl z7HiwZtmWDQdG3NW${oT=FzgPic|L48<N>&0SR#aVAIOwbU>N6pMY7m)9#0Yr+sS!B ze at l)33CxG(WgX{vu&_5+80TqmKEqU&;-0K6K{|61!#cv$It(+hTyTY{-56$M>FmkU zc>+6YgtD+IwmlcNZd>CRme?BBmaq4}PoegIYYF{Xt>tD|ZmtMqXD}_S at n>Sl|8N%n zC-qP2pVU98e^URX{z?6l`X}{I>Yvm<ssD#k1O4&<I^@YTl#*7R-C#DU@^vN~NHbIz z?1p+$uh...