search for: gvp

Displaying 13 results from an estimated 13 matches for "gvp".

Did you mean: gp
2009 Oct 06
0
[LLVMdev] 2.6/trunk Execution Engine question
...std::string errstring; ExecutionEngine* eeng = ExecutionEngine::create(modp, false, &errstring, CodeGenOpt::Default, true); if ( eeng == NULL ) { raw_cout << errstring << "\n"; exit(-1); } raw_cout << "Fixing to get pointer to global\n"; void* gvp = eeng->getPointerToGlobal(gv); raw_cout << "Got pointer to global\n"; raw_cout << "gv = " << *((int*)gvp) << "\n"; exit(0); }
2009 Oct 06
1
[LLVMdev] 2.6/trunk Execution Engine question
On Tue, Oct 6, 2009 at 5:49 PM, Reid Kleckner <rnk at mit.edu> wrote: >> Also, the null pointer is coming from a call to JCE->allocateSpace(). >> This is a virtual function; I'm trying to discover what subclass it >> is. > > So, there's JITEmitter::allocateSpace which overrides > JITCodeEmitter::allocateSpace(), but *most* of the time it just calls >
2005 Jun 22
2
can´t create shares with Win NT server manager
Hello! I have a little problem with share administration on my Samba server from the windows server manager tool. I run samba in ADS mode and everything works just fine except the share admin part, when i try to add a share from server manager i got "access denyed". here is my smb.conf, what have i missed? [global] workgroup = PHDOM02 server string = Samba Test Server realm =
2017 Jun 12
2
Extremely slow du
Hi Vijay I have enabled client profiling and used this script https://github.com/bengland2/gluster-profile-analysis/blob/master/gvp-client.sh to extract data. I am attaching output files. I don't have any reference data to compare with my output. Hopefully you can make some sense out of it. On Sat, Jun 10, 2017 at 10:47 AM, Vijay Bellur <vbellur at redhat.com> wrote: > Would it be possible for you to turn on cli...
2017 Jul 11
2
Extremely slow du
..., mohammad kashif > <kashif.alig at gmail.com <mailto:kashif.alig at gmail.com>> wrote: > > Hi Vijay > > I have enabled client profiling and used this script > https://github.com/bengland2/gluster-profile-analysis/blob/master/gvp-client.sh > <https://github.com/bengland2/gluster-profile-analysis/blob/master/gvp-client.sh> > to extract data. I am attaching output files. I don't have > any reference data to compare with my output. Hopefully you > can make s...
2009 Oct 06
4
[LLVMdev] 2.6/trunk Execution Engine question
> 6. When ExecutionEngine::create was called with parameter > "GVsWithCode" set to its default value of true, I got a segfault when > trying to get a pointer to one of my globals.  JIT::getMemoryForGV was > returning NULL in that case.  Explicitly passing false for > "GVsWithCode" cleared it up. That's no good. Could you send me a stack trace and explain
2017 Mar 03
5
[PATCH v2 0/4] Avoid 0-bytes malloc in bindings
Hi, some of the bindings may try to malloc with 0 bytes as size when closing an handle, because there were no event handlers registered. Since this can have different behaviours in POSIX, avoid that situation altogether by just skipping allocating anything when there were no event handlers. Thanks, Pino Toscano (4): ocaml: do not try to malloc 0 elements in get_all_event_callbacks python:
2017 Jun 10
0
Extremely slow du
Would it be possible for you to turn on client profiling and then run du? Instructions for turning on client profiling can be found at [1]. Providing the client profile information can help us figure out where the latency could be stemming from. Regards, Vijay [1] https://gluster.readthedocs.io/en/latest/Administrator%20Guide/Performance%20Testing/#client-side-profiling On Fri, Jun 9, 2017 at
2017 Jun 16
0
Extremely slow du
...look into the gluster profile logs ? Thanks Kashif On Mon, Jun 12, 2017 at 11:40 AM, mohammad kashif <kashif.alig at gmail.com> wrote: > Hi Vijay > > I have enabled client profiling and used this script > https://github.com/bengland2/gluster-profile-analysis/blob/ > master/gvp-client.sh to extract data. I am attaching output files. I > don't have any reference data to compare with my output. Hopefully you can > make some sense out of it. > > On Sat, Jun 10, 2017 at 10:47 AM, Vijay Bellur <vbellur at redhat.com> wrote: > >> Would it be pos...
2017 Jun 18
1
Extremely slow du
...gt; > Kashif > > On Mon, Jun 12, 2017 at 11:40 AM, mohammad kashif <kashif.alig at gmail.com> > wrote: > >> Hi Vijay >> >> I have enabled client profiling and used this script >> https://github.com/bengland2/gluster-profile-analysis/blob/m >> aster/gvp-client.sh to extract data. I am attaching output files. I >> don't have any reference data to compare with my output. Hopefully you can >> make some sense out of it. >> >> On Sat, Jun 10, 2017 at 10:47 AM, Vijay Bellur <vbellur at redhat.com> >> wrote: >...
2008 May 22
2
grid error message when resizing graphics window after tcltk loaded
Dear R-devel / Dr. Murrell - This is similar but ultimately unrelated (I think) to something I posted about in February. See my original post here: https://stat.ethz.ch/pipermail/r-devel/2008-February/048278.html I start R with the --vanilla option, and run the following code. ## BEGIN SAMPLE R CODE library(grid) for(i in seq(0, 1, by = .1)) { for(j in seq(0, 1, by = .1)) { angle
2017 Jun 09
2
Extremely slow du
Hi Vijay Thanks for your quick response. I am using gluster 3.8.11 on Centos 7 servers glusterfs-3.8.11-1.el7.x86_64 clients are centos 6 but I tested with a centos 7 client as well and results didn't change gluster volume info Volume Name: atlasglust Type: Distribute Volume ID: fbf0ebb8-deab-4388-9d8a-f722618a624b Status: Started Snapshot Count: 0 Number of Bricks: 5 Transport-type: tcp
2013 Dec 27
0
[PATCH] ruby: Fix .new method (RHBZ#1046509).
...l @@ -42,6 +42,7 @@ let rec generate_ruby_c () = #include <stdint.h> #include <string.h> #include <errno.h> +#include <assert.h> #pragma GCC diagnostic push #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" @@ -135,28 +136,33 @@ ruby_guestfs_free (void *gvp) } } -/* - * call-seq: - * Guestfs::Guestfs.new([{:environment => false, :close_on_exit => false}]) -> Guestfs::Guestfs - * - * Call - * +guestfs_create+[http://libguestfs.org/guestfs.3.html#guestfs_create] - * to create a new libguestfs handle. The handle is represented in - * Ru...