similar to: dtrace : isolating the slow write

Displaying 20 results from an estimated 120 matches similar to: "dtrace : isolating the slow write"

2008 Dec 02
18
How to dig deeper
In order to get more information on IO performance problems I created the script below: #!/usr/sbin/dtrace -s #pragma D option flowindent syscall::*write*:entry /pid == $1 && guard++ == 0/ { self -> ts = timestamp; self->traceme = 1; printf("fd: %d", arg0); } fbt::: /self->traceme/ { /* elapsd =timestamp - self -> ts; printf("
2002 Mar 01
4
UI regression
Hi, Earlier this year I "upgraded" from wine 20010510 to 20011226 in order to see if some kind of resource leak was fixed which caused screen redraws to get progressively slower and slower and slower and slower, .... That was fixed but there seemed to be a significant number of graphics and UI regressions. I've just upgraded to 20020228 to see if things were any better and within
2004 May 19
2
[LLVMdev] Question about insert function or instruction.
Hi llvmer, I am trying to learn how to use llvm. My question is described as the following, there has already a testcase code, and I get bytecode by using llvmgcc. What I want to do is to insert a call funcation into each basic block, which is for statistic some information. 1) I implement call function in another c/cpp file and can I insert the external call function to existed bytecode ? if it
2004 May 21
1
[LLVMdev] Re: LLVMdev digest, Vol 1 #292 - 4 msgs
Hi, Thank Brian Gaeke so much. Following TraceBasicBlocks.cpp, I modified the code as below and could insert instruction or function I need into anywhere in Module. But it works well without BB->getInstList().push_back(InstrCall), and if I add the BB->getInstList().push_back() following new CallInst(), I got error information when runing opt. What is the reason for it? And is it necessary
2004 May 19
0
[LLVMdev] Question about insert function or instruction.
> What I want to do is to insert a call funcation into each basic > block, which is for statistic some information. I recommend that you look at the various pieces of code under llvm/lib/Transforms/Instrumentation, e.g. BlockProfiling.cpp and TraceBasicBlocks.cpp. They do essentially the same thing as you are trying to do. > 1) I implement call function in another c/cpp file and >
2006 Dec 07
1
When does ufunc/func work?
I''m trying to profile the time spent in libc functions in a large build job (building Perl), and I have trouble getting ufunc and func working. (func() is not strictly needed; I was just hoping to use it in order to profile idle time.) Here''s the story. I''ve written a dtrace script to start a separate dtrace process for each invoked command: int fileid;
2006 Mar 24
1
Isolating a Rails app?
I''m trying to isolate some Rails apps I will be running on a shared server; by isolate I mean I want the application to be unable to access any of the filesystem below its root. These apps are from a few different people and I don''t want them to accidentally (or purposefully) blow someone else''s files away. I would just create a unique user for all of them, but I
2006 Mar 24
0
Re: Isolating Rails apps?
> > } I''m trying to isolate some Rails apps I will be running on a shared > } server; by isolate I mean I want the application to be unable to access > } any of the filesystem below its root. These apps are from a few > } different people and I don''t want them to accidentally (or purposefully) > } blow someone else''s files away. I would just create a
2010 Feb 01
1
Isolating a column within a loop
Dear all, I am trying to calculate the mean of one column for many data frames. The code I am using is as follows: > for (i in seq(nrow(index))) { ??? ??? assign(paste(model, "_mean_",index$year[i], index$month[i], sep=''), ????????????? mean(get(paste(model, index$year[i], index$month[i], "[,3]", sep='')))) ???????? } Error in get(paste(model,
2013 Feb 27
0
Isolating Gluster volumes with a firewall (amazon security groups)
Hi All, I am looking to utilize gluster on amazon aws for shared storage among web servers (Elastic Beanstalk). However, since I plan on using the gluster tier for numerous different beanstalk environments, I'd like to isolate the systems from accessing each others data. Since Beanstalk uses dynamic IP addresses, I can't utilize the built in auth.allow and auth.reject in gluster to
2015 May 04
0
Isolating a subnet on demand
On Mon, May 04, 2015 at 08:50:36PM +0200, Anne-Gwenn Kettunen wrote: > Hi! I'm setting up a VPN with friends of mine, and we are currently > considering the possibility to opening the subnet to more people. > Considering that one day or another we may have to isolate a subnet (because > of bad behaviour, or because it has been compromised), which solution(s) > would you
2015 May 04
0
Isolating a subnet on demand
And we'll take a look at Pf & IPTables :) Good evening! >> There is no centralized way to remove a subnet or block a user. A user >> is authorized to be on the network by other nodes that have his/her >> public key. If you delete the offending host config files and let tinc >> reload its configuration, you can remove a bad node from the network. >> >>
2015 May 04
0
Isolating a subnet on demand
We started to take a look about that, and apparently, it seems that the IP in the public key is taken into account when a client connects to a gateway. Spoofing at that level doesn't seem easy, because the IP address seems to be part of the authentication process. Dealing with inside threats seems however a good feature for future versions ;) Le 04/05/2015 21:50, Etienne Dechamps a ?crit
2015 May 04
0
Isolating a subnet on demand
On 05/04/2015 10:01 PM, Etienne Dechamps wrote: > On 4 May 2015 at 20:53, Anne-Gwenn Kettunen <anwen at asphodelium.eu> wrote: >> We started to take a look about that, and apparently, it seems that the IP >> in the public key is taken into account when a client connects to a gateway. >> Spoofing at that level doesn't seem easy, because the IP address seems to be
2005 Dec 10
1
WINS and isolating groups
Hi guys, I'm planning a fileserver for around 12 small companies (two to five people each) who share one buidling/office and all IT resources. Since I'm not responsible or involved in the client support, I want to prevent the different companies from seeing each other's PCs through network browsing, for example, company A consists of Joe, Mary and Pete, and Company B consists of
2005 Jul 11
2
Isolating string containing only file name from complete path
Hi all, What I'd like to do is to is to be able to extract a string corresponding to only the file name from a string containing the complete path, i.e. from the following path string: "/Users/ken/Desktop/test/runs/file1" I would like to end up with: "file1" This would be most ideally done in a platform-independent way. Thanks in advance, -Ken
2008 Sep 10
1
isolating X on an expression
Dear R-gurus, I know that it is not a R problem, but as need to implement some solution for this on R, I would like to know if someone help me on how to isolate X on the expression below. K=(sen A * sen B ) + ( cos A * cos B * cos ( X - Y ) ) Any help are welcome mitinho astronauta brazil [[alternative HTML version deleted]]
2006 Oct 31
0
6316708 LD_DEBUG should provide a means of identifying/isolating individual link-map lists (fix unref)
Author: rie Repository: /hg/zfs-crypto/gate Revision: c8b1a957b6932793bf1ec075bba368e687c7fbca Log message: 6316708 LD_DEBUG should provide a means of identifying/isolating individual link-map lists (fix unref) Files: create: deleted_files/usr/src/cmd/sgs/liblddbg/common/_synonyms.h delete: usr/src/cmd/sgs/liblddbg/common/_synonyms.h
2015 May 04
2
Isolating a subnet on demand
Hi! I'm setting up a VPN with friends of mine, and we are currently considering the possibility to opening the subnet to more people. Considering that one day or another we may have to isolate a subnet (because of bad behaviour, or because it has been compromised), which solution(s) would you recommend for such a situation?
2011 Jun 10
1
Mounting a volume - isolating directories = Stumped.
As so far I have 15 servers feeding data to my four node Gluster-FS (cluster), at this current time all of my scripts are faceted to mount the volume and move data into its directory, only issue I see with this is that half of these clients should not be able to go one level back from its 'home' directory when transfering data - I wanted to see if there was a way to isolate these specified