search for: sysmon

Displaying 8 results from an estimated 8 matches for "sysmon".

Did you mean: syscon
2012 May 10
2
[LLVMdev] Wrong Dwarf info with -O2? [PowerPC]
...iable: Unhandled dwarf expression opcode 0xff>, flags=<optimized out>) at msglib.c:6323 #3 0x1002cce8 in ml_wait_for_next_event () at msglib.c:6821 #4 0x1000fdd0 in sys_mainloop () at config.c:1221 #5 0x1000bda8 in main (argc=<optimized out>, argv=<optimized out>) at sysmon.c:437 Please note the "Unhandled dwarf expression" errors. Is this a known problem? How can I help debugging this? Btw., this is dead-simple C code. Thanks for any hints, Gabor
2012 May 10
0
[LLVMdev] Wrong Dwarf info with -O2? [PowerPC]
...pression opcode 0xff>, > flags=<optimized out>) at msglib.c:6323 > #3 0x1002cce8 in ml_wait_for_next_event () at msglib.c:6821 > #4 0x1000fdd0 in sys_mainloop () at config.c:1221 > #5 0x1000bda8 in main (argc=<optimized out>, argv=<optimized out>) > at sysmon.c:437 > > > Please note the "Unhandled dwarf expression" errors. Is this a known > problem? How can I help debugging this? Btw., this is dead-simple C > code. Please add what you have to: http://llvm.org/bugs/show_bug.cgi?id=12733 Joerg
2005 May 12
1
[Bug 1040] SSH only believes 127.0.0.1 is IPV4 localhost, not 127/8
...39;^]'. 220 services.fsf.net ESMTP Exim 4.50 Thu, 12 May 2005 13:49:14 -0500 4) attempt to connect to the forwarded port at 127.0.0.2 Trying 127.0.0.2... telnet: Unable to connect to remote host: Connection refused 5) kill the port forwarded tunnel and attempt to make it bind on 127.0.0.2: sysmon:~# ssh -L 2426:mail.fsf.net:25 -N -b 127.0.0.2 adam at mail.fsf.net ssh: connect to host mail.fsf.net port 22: Invalid argument (that's the Debian Sarge error message, which OpenSSH_3.8.1p1 Debian-8.sarge.4, OpenSSL 0.9.7e 25 Oct 2004; from Mac OS X, the message is: imac-g5-wired:~ adam$ ss...
2008 Apr 28
4
Wineserver causing heavy CPU load
I am running Fedora 8 uname -r = 2.6.24.4-64.fc8 on my box with Wine 0.9.58. When I first installed it I noticed that my CPU usage jumped and stayed at 100% with wineserver taking > 85%. I killed the wineserver process and it dropped down, however it soon jumped back up when wineserver restarted itself. I then killed it again and all related processes and disabled it from starting as a damen
2015 Apr 08
3
[PATCH V2] pmu/gk20a: PMU boot support.
...*ppmu) +{ + struct gk20a_pmu_priv *pmu = to_gk20a_priv(ppmu); + struct nvkm_pmu_priv_vm *ppmuvm = &pmu->pmuvm; + int err = 0; + int ret = 0; + + if (pmu->sw_ready) { + nv_debug(ppmu, "skipping init\n"); + goto skip_init; + } + + /* no infoRom script from vbios? */ + + /* TBD: sysmon subtask */ + + INIT_WORK(&pmu->isr_workq, gk20a_pmu_process_message); + + ret = nvkm_gpuobj_new(nv_object(ppmu), NULL, GK20A_PMU_TRACE_BUFSIZE, + 0, 0, &pmu->trace_buf.obj); + if (ret) + goto err; + ret = nvkm_gpuobj_map_vm(nv_gpuobj(pmu->trace_buf.obj), + ppmuvm->v...
2015 Mar 11
0
[PATCH] pmu/gk20a: PMU boot support.
...pmu->mutex[i].index = i; > + } > + pmu_seq_init(pmu); > + > + nv_debug(ppmu, "skipping init\n"); > + goto skip_init; > + } > + > + /* no infoRom script from vbios? */ > + > + /* TBD: sysmon subtask */ > + > + pmu->mutex_cnt = 0x00000010; > + pmu->mutex = kzalloc(pmu->mutex_cnt * > + sizeof(struct pmu_mutex), GFP_KERNEL); > + if (!pmu->mutex) { > + err = -ENOMEM; > + nv_error(ppmu, "not en...
2015 Mar 11
3
[PATCH] pmu/gk20a: PMU boot support.
...0; + + + if (pmu->sw_ready) { + + for (i = 0; i < pmu->mutex_cnt; i++) { + pmu->mutex[i].id = i; + pmu->mutex[i].index = i; + } + pmu_seq_init(pmu); + + nv_debug(ppmu, "skipping init\n"); + goto skip_init; + } + + /* no infoRom script from vbios? */ + + /* TBD: sysmon subtask */ + + pmu->mutex_cnt = 0x00000010; + pmu->mutex = kzalloc(pmu->mutex_cnt * + sizeof(struct pmu_mutex), GFP_KERNEL); + if (!pmu->mutex) { + err = -ENOMEM; + nv_error(ppmu, "not enough space ENOMEM\n"); + goto err; + } + + for (i = 0; i < pmu->mutex_cnt; i++)...
2015 Mar 12
2
[PATCH] pmu/gk20a: PMU boot support.
...pmu->mutex[i].index = i; > + } > + pmu_seq_init(pmu); > + > + nv_debug(ppmu, "skipping init\n"); > + goto skip_init; > + } > + > + /* no infoRom script from vbios? */ > + > + /* TBD: sysmon subtask */ > + > + pmu->mutex_cnt = 0x00000010; > + pmu->mutex = kzalloc(pmu->mutex_cnt * > + sizeof(struct pmu_mutex), GFP_KERNEL); > + if (!pmu->mutex) { > + err = -ENOMEM; > + nv_error(ppmu, "not en...