Displaying 20 results from an estimated 21 matches for "l51".
Did you mean:
51
2011 Sep 09
1
[LLVMdev] Reserved call frame
...s from rsp are not
correctly updated between the sub instruction and the call.
Is this some kind of a bug, or i should make more changes to disable
reserved call frame ?
Here is a piece of the output of the testcase with the reservedCallFrame
enabled:
# BB#26: # %L51
movq 536(%rsp), %rbp
movq $-5, 536(%rsp)
movq 552(%rsp), %rsi
movq 560(%rsp), %rdx
movq 544(%rsp), %rcx
movq %rdi, (%rsp)
movq $2, 8(%rsp)
sarq $4, %rbp
leaq *128*(%rsp), %rdi
movq %rbp, %r8
movq *40*(%rsp), %r9...
2019 Jul 09
2
SIP credentials in the dialplan
On Tue, Jul 9, 2019 at 6:05 AM Joshua C. Colp <jcolp at digium.com> wrote:
> On Tue, Jul 9, 2019, at 7:00 AM, Dovid Bender wrote:
> > Hi,
> >
> > Looking at http://the-asterisk-book.com/1.6/applikationen-dial.html you
> > should be able to dial with SIP credentials in the DP. Is this still
> > possible in recent versions of Asterisk either with chan_sip or
2019 Dec 23
1
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
...ed
>> by the driver not respecting the return value of the
>> dma_map_ops::map_sg function. You can see the driver ignoring the
>> return value here:
>> https://github.com/torvalds/linux/blob/7e0165b2f1a912a06e381e91f0f4e495f4ac3736/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c#L51
>>
>> Previously this didn?t cause issues because the intel map_sg always
>> returned the same number of elements as the input scatter gather list
>> but with the change to this dma-iommu api this is no longer the
>> case. I wasn?t able to track the bug down to a speci...
2019 Sep 20
2
Extra questions about HWASAN
Hi,
On Fri, Sep 20, 2019 at 6:48 AM Matthew Malcomson
<Matthew.Malcomson at arm.com> wrote:
>
> Hello again,
>
> I have been thinking more about the GCC implementation of hwasan and
> found a few more questions that I would really appreciate help with.
>
> ---
> I've noticed a match-all condition in the compiler inline
> instrumentation, but can't see
2019 Dec 23
0
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
...most likely caused
> by the driver not respecting the return value of the
> dma_map_ops::map_sg function. You can see the driver ignoring the
> return value here:
> https://github.com/torvalds/linux/blob/7e0165b2f1a912a06e381e91f0f4e495f4ac3736/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c#L51
>
> Previously this didn?t cause issues because the intel map_sg always
> returned the same number of elements as the input scatter gather list
> but with the change to this dma-iommu api this is no longer the
> case. I wasn?t able to track the bug down to a specific line of code
>...
2020 May 29
0
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
...er and is most likely caused by the driver not respecting the return value of the dma_map_ops::map_sg function. You can see the driver ignoring the return value here:
> > https://github.com/torvalds/linux/blob/7e0165b2f1a912a06e381e91f0f4e495f4ac3736/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c#L51
> >
> > Previously this didn?t cause issues because the intel map_sg always returned the same number of elements as the input scatter gather list but with the change to this dma-iommu api this is no longer the case. I wasn?t able to track the bug down to a specific line of code unfortu...
2001 Mar 07
1
Minor bug in maketitle.pl (with bug correction) (PR#864)
...39;. 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: }
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~...
2020 Jul 09
2
Understand alias-analysis results
...tps://en.wikipedia.org/wiki/Disjoint-set_data_structure#Union).
You can see how `AliasSet::mergeSetIn` (called, e.g., by
`AliasSetTracker::mergeAliasSetsForPointer`) sets up forwarding for
`AS.Forward`:
https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L51,
https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L301
FWIW, you can use a tracer or manually step through `opt` in a debugger
to follow the function calls.
> And how to interpret that we have "2 must alias responses"? Where
> d...
2015 Dec 14
5
[Bug 2517] New: GitHub version doesn't include ChangeLog
https://bugzilla.mindrot.org/show_bug.cgi?id=2517
Bug ID: 2517
Summary: GitHub version doesn't include ChangeLog
Product: Portable OpenSSH
Version: 6.8p1
Hardware: 68k
OS: Mac OS X
Status: NEW
Severity: enhancement
Priority: P5
Component: Documentation
Assignee:
2020 Aug 26
0
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
...driver and is most likely caused by the driver not respecting the return value of the dma_map_ops::map_sg function. You can see the driver ignoring the return value here:
> https://github.com/torvalds/linux/blob/7e0165b2f1a912a06e381e91f0f4e495f4ac3736/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c#L51
>
> Previously this didn?t cause issues because the intel map_sg always returned the same number of elements as the input scatter gather list but with the change to this dma-iommu api this is no longer the case. I wasn?t able to track the bug down to a specific line of code unfortunately.
&g...
2007 Jul 06
3
energizerups and bestups -> megatec?
Hi!
I don't know how I missed it before, but "bestups" seems to implement
mostly the same protocol as megatec. Is anybody out there using this
driver willing to try "megatec" to see if it works?
AFAIK, the only difference seems to be the command that gets the UPS
identification data ("I" on "megatec", "ID" on "bestups"), but
2007 Jul 06
3
energizerups and bestups -> megatec?
Hi!
I don't know how I missed it before, but "bestups" seems to implement
mostly the same protocol as megatec. Is anybody out there using this
driver willing to try "megatec" to see if it works?
AFAIK, the only difference seems to be the command that gets the UPS
identification data ("I" on "megatec", "ID" on "bestups"), but
2013 Jul 13
10
username/password combo for custom provider (couchbase)
Hi,
I''m trying to program custom type for managing Couchbase buckets.
Problem is that every RW operation to Couchbase cluster (creating,
deleting, resizing bucket) requires admin privileges (username/password).
Do you have any suggestion how should I pass the username/password to
provider? If I make it a param, then every resource of type
''couchbucket'' will need to
2017 Jul 31
2
Segmentation fault in matcher/queryoptimiser
...ritten a one-liner for this
here [3]. But I'm not yet convinced that's all there is: could the hint
field be used already somewhere else? Should we probably keep it and
make QueryOptimiser take ownership?
[1]
https://github.com/xapian/xapian/blob/master/xapian-core/matcher/queryoptimiser.h#L51
[2]
https://github.com/xapian/xapian/blob/master/xapian-core/api/queryinternal.cc#L1665
[3]
https://github.com/rsto/xapian/commit/3e7d65b25eef00347f5c764af5ff4d770433ac9b
[4]
https://github.com/xapian/xapian/blob/master/xapian-core/matcher/queryoptimiser.h#L106
Cheers,
Robert
-------------- next...
2020 Jul 10
2
Understand alias-analysis results
...et_data_structure#Union).
>
> You can see how `AliasSet::mergeSetIn` (called, e.g., by
> `AliasSetTracker::mergeAliasSetsForPointer`) sets up forwarding for
> `AS.Forward`:
> https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L51,
>
> https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L301
> FWIW, you can use a tracer or manually step through `opt` in a debugger
> to follow the function calls.
>
> > And how to interpret that we have "...
2017 Feb 08
3
Linking Linux kernel with LLD
>I have just checked it, the startup.elf and realmode.elf are fine. Only few changes are required for mainline kernel and one >commit has to be reverted from lld and a few patches have to be applied.
>
>The only step when I have used BFD is linking vmlinux. I have manually set LD variable in vmlinux_link() function. The vmlinux >produced by lld doesn't work yet. I will compare
2019 Dec 21
13
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
...i915 driver and is most likely caused by the driver not respecting the return value of the dma_map_ops::map_sg function. You can see the driver ignoring the return value here:
https://github.com/torvalds/linux/blob/7e0165b2f1a912a06e381e91f0f4e495f4ac3736/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c#L51
Previously this didn?t cause issues because the intel map_sg always returned the same number of elements as the input scatter gather list but with the change to this dma-iommu api this is no longer the case. I wasn?t able to track the bug down to a specific line of code unfortunately.
Could som...
2019 Dec 21
13
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
...i915 driver and is most likely caused by the driver not respecting the return value of the dma_map_ops::map_sg function. You can see the driver ignoring the return value here:
https://github.com/torvalds/linux/blob/7e0165b2f1a912a06e381e91f0f4e495f4ac3736/drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c#L51
Previously this didn?t cause issues because the intel map_sg always returned the same number of elements as the input scatter gather list but with the change to this dma-iommu api this is no longer the case. I wasn?t able to track the bug down to a specific line of code unfortunately.
Could som...
2020 Jul 09
2
Understand alias-analysis results
Hey Matt,
That's awesome. Thank you very much for all the information and
clarification! Just a few follow up questions. Could you kindly shed some
lights on it? Thank you!
1. I tried to tweak the code in the following way:
- Clang [-> LLVM-IR]: https://llvm.godbolt.org/z/n9rGrs
- [LLVM-IR ->] opt: https://llvm.godbolt.org/z/Uc6h5Y
And i note that the outputs are:
Alias sets for
2014 Oct 13
2
Re: passthrough of PCI-device
Hi Pierre,
thanks for your reply.
I am using kernel 3.10.0-123.8.1.el7.x86_64.
The kernel modul used after nodedev-detach is vfio-pci
This is the output of lspci -vv after I did a virsh nodedev-detatch pci_0000_02_00_0
02:00.0 Ethernet controller: PLX Technology, Inc. Device 235e
Subsystem: PLX Technology, Inc. Device 235e
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV-