Displaying 20 results from an estimated 90 matches similar to: "[Bug 111094] New: Cannot start Xorg on Nvidia GP108M"
2018 Aug 31
0
[PATCH] PCI: add prefetch quirk to work around Asus/Nvidia suspend issues
[+cc Intel folks]
On Fri, Aug 31, 2018 at 03:30:57PM +0800, Daniel Drake wrote:
> On over 40 Intel-based Asus products, the nvidia GPU becomes unusable
> after S3 suspend/resume. The affected products include multiple
> generations of nvidia GPUs and Intel SoCs. After resume, nouveau logs
> many errors such as:
>
> fifo: fault 00 [READ] at 0000005555555000 engine 00 [GR]
2018 Sep 17
2
[Bug 107959] New: System hangs up when loading nouveau for NVIDIA MX150 card
https://bugs.freedesktop.org/show_bug.cgi?id=107959
Bug ID: 107959
Summary: System hangs up when loading nouveau for NVIDIA MX150
card
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component:
2018 Sep 07
9
[PATCH] PCI: Reprogram bridge prefetch registers on resume
On 38+ Intel-based Asus products, the nvidia GPU becomes unusable
after S3 suspend/resume. The affected products include multiple
generations of nvidia GPUs and Intel SoCs. After resume, nouveau logs
many errors such as:
fifo: fault 00 [READ] at 0000005555555000 engine 00 [GR] client 04 [HUB/FE] reason 4a [] on channel -1 [007fa91000 unknown]
DRM: failed to idle channel 0 [DRM]
2018 Aug 31
6
[PATCH] PCI: add prefetch quirk to work around Asus/Nvidia suspend issues
On over 40 Intel-based Asus products, the nvidia GPU becomes unusable
after S3 suspend/resume. The affected products include multiple
generations of nvidia GPUs and Intel SoCs. After resume, nouveau logs
many errors such as:
fifo: fault 00 [READ] at 0000005555555000 engine 00 [GR] client 04 [HUB/FE] reason 4a [] on channel -1 [007fa91000 unknown]
DRM: failed to idle channel 0 [DRM]
2005 Jun 02
2
Asterisk 1.0.7 on Gentoo
I installed Asterisk on Gentoo using emerge. At first, emerge tried
installing version 0.9 but reading the wiki showed how to get the
latest stable. I'm running Gentoo kernel 2.6.11-gentoo-r9.
Asterisk seems to be working just fine, but I'm concerned that since
I don't have any Digium hardware, I may need a timer source. When I
executed emerge zaptel, it installed zaptel 1.0.7
2019 Jul 09
2
Segfault of doveconf
On 4.7.2019 19.00, Claudio Prono via dovecot wrote:
Sorry to bother again, but the problem persist.
I have checked all the configurations of dovecot, and seems all ok, but randomly the segfault pops up again, without no apparently reason.
My packages are:
ii dovecot-core 1:2.2.22-1ubuntu2.10 amd64 secure POP3/IMAP server - core files
ii
2019 Jul 09
2
GitHub monorepo and commit access
Hello,
I was wondering what was the current expected practice for committing patches to LLVM now that the Git monorepo is here.
I have commit access to SVN but when I try to land my patched through GitHub I get an error saying "Permission to llvm/llvm-project.git denied".
Depending on the answer, the documentation might need to be slightly clarified: the getting started documents for
2019 Jul 09
2
SIP credentials in the dialplan
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 pj_sip?
TIA.
Dovid
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2019 Jul 08
4
Question on Aliasing and invariant load hoisting
Hi,
I have the below test case.
--snip--
struct st {
int a;
int b;
};
int * ptr;
int x,y;
void bar(int *x);
void foo() {
struct st obj;
bar(&obj.b);
if(x)
obj.a =x;
else
obj.a =y;
for (int i=0; i<obj.a;i++)
ptr[i]=i;
}
--snip--
LLVM IR produced at -O3 is shown below.
ref: https://godbolt.org/z/WPlmfr
--Snip--
%8 = getelementptr inbounds %struct.st,
2019 Jul 09
1
Segfault of doveconf
On 9.7.2019 13.40, Aki Tuomi via dovecot wrote:
>
>
> On 9.7.2019 12.54, Claudio Prono wrote:
>>
>> On 4.7.2019 19.00, Claudio Prono via dovecot wrote:
>>
>> Sorry to bother again, but the problem persist.
>>
>> ?
>>
>> I have checked all the configurations of dovecot, and seems all
>> ok, but randomly the segfault pops
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 Jun 25
2
302 moved temporally callerid behavior
Thanks for trying, what asterisk version do you use?
вт, 25 июн. 2019 г. в 17:50, Doug Lytle <support at drdos.info>:
> We have Polycom phones (I'm using a VVX601, the destination is a VVX301).
> We're also on Asterisk 13.
>
> I forwarded my call to the VVX301 and then dialed my phones DID. The
> forwarded call showed my cell phone number, so I cannot reproduce.
2019 Jul 09
4
RFC: changing variable naming rules in LLVM codebase
This looks really great to me Rui, and I’m also pleased to see the positive comments on the review thread. Thank you for driving this forward!
-Chris
> On Jul 4, 2019, at 9:50 PM, Rui Ueyama <ruiu at google.com> wrote:
>
> Hi all,
>
> I wrote a tool <https://reviews.llvm.org/D64123> to batch-rename variable names so that they are in camelCase, and I applied the
2019 Jul 10
2
Using bytecode version of std::sort for JIT generated data type
Do you have some pointers on how to do it? Take a file like sort.cc above
and generate a JIT module. Does llc
<https://llvm.org/docs/CommandGuide/llc.html> help with this?
What library function can we use to load an existing IR module file into my
JIT runtime module to compile them together?
On Tue, Jul 9, 2019 at 4:17 PM David Blaikie <dblaikie at gmail.com> wrote:
> Ah, no, sort
2019 Jul 09
2
Using bytecode version of std::sort for JIT generated data type
On Mon, Jul 8, 2019 at 4:39 PM David Blaikie <dblaikie at gmail.com> wrote:
> There isn't any magic command for this - you'd have to write some C++
> code/a custom LLVM optimization pass.
>
> Though, that said - perhaps it should just be a runtime parameter where
> you rely on LLVM to inline/optimize things away? You could do some
> relatively smaller code
2019 Jul 09
2
RFC: changing variable naming rules in LLVM codebase
Hi Rui,
Is your tool in a good state to be run on people's downstream repositories?
It would be nice to be able to update variable names there too at the same
time.
James
On Tue, 9 Jul 2019 at 08:24, Rui Ueyama via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Thanks, Chris.
>
> Looks like everybody is at least mildly comfortable with my variable name
> renaming change,
2019 Jul 08
2
Shell auto-completion for ld.lld linker
Hi lld developers,
As a GSoC student I wrote static ld.lld auto-completion scripts for zsh and
bash shell because it doesn't have much options and flags for dynamic
completion. Whether I send pr to zsh-completion/bash-completion package or
open phabricator review for them? Also gnu ld has already autocompletion
for bash shell but l am not merging ld and lld completion scripts to one
file
2019 Jul 04
2
Segfault of doveconf
Sorry to bother again, but the problem persist.
I have checked all the configurations of dovecot, and seems all ok, but randomly the segfault pops up again, without no apparently reason.
My packages are:
ii dovecot-core 1:2.2.22-1ubuntu2.10 amd64 secure POP3/IMAP server - core files
ii dovecot-imapd 1:2.2.22-1ubuntu2.10
2019 Jun 03
16
[Bug 110830] New: GeForce GTX 1660 Ti (mobile) not supported (NV168/TU116)
https://bugs.freedesktop.org/show_bug.cgi?id=110830
Bug ID: 110830
Summary: [nouveau] GeForce GTX 1660 Ti (mobile) not supported
(NV168/TU116)
Product: xorg
Version: 7.7 (2012.06)
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component:
2002 Oct 05
0
Shorewall.net down today for maintenance
The Shorewall main site will be down from 3:00 - 5:00 PDT (GMT -0700)
today to upgrade the firewall and server to RH8.0.
-Tom
--
Tom Eastep \ Shorewall - iptables made easy
AIM: tmeastep \ http://www.shorewall.net
ICQ: #60745924 \ teastep@shorewall.net