search for: millsec

Displaying 9 results from an estimated 9 matches for "millsec".

Did you mean: billsec
2007 Feb 15
2
profile provider: is it me doing stupid things?
...e. Following DTrace snippet is tried: dtrace -q -p 3173 -n ''syscall::read:entry { @[probefunc] = count(); } profile:::tick-250ms { printa("%6s %@6d\n", @); printf("\n"); clear(@); }'' This to chop up a one second interval into four different equal sized 250 millsec slots. Counting the number of read and write syscalls that fall in each slot. This one is run against a process that reads a single character and writes that character (stdin, stdout) continuously. Wrote it myself so I dare say it is functionally correct :-) The output I get is: read 15078...
2009 Jun 04
2
Backport that adds delayed orphan scan timer to 1.4
Next two patches are backport of orphan scan timer patches to ocfs2-1.4
2009 Jun 04
3
Patches that adds delayed orphan scan timer (rev 3)
Resending after implementing review comments.
2009 Jun 02
3
Patches that adds delayed orphan scan timer (rev 2)
Resending after implementing review comments.
2009 Jun 02
3
Patches that adds delayed orphan scan timer
Resending after adding another patch to display delayed orphan scan statistics.
2011 Jun 21
13
VM disk I/O limit patch
...blkif->waiting_reqs = 1; unplug_queue(blkif); + if(blkif->reqmin){ + if(2 == ret && (blkif->reqtime > jiffies)){ + jiffies_to_timeval(jiffies, &cur_time); + if(log_stats && (cur_time.tv_sec % 10 ==1 )) + printk(KERN_DEBUG "%s: going to sleep %d millsecs(rate=%d)\n", + current->comm, + jiffies_to_msecs(blkif->reqtime - jiffies), + blkif->reqrate); + + set_current_state(TASK_INTERRUPTIBLE); + schedule_timeout(blkif->reqtime - jiffies); + + if(log_stats && (cur_time.tv_sec % 10 ==1 )) +...
2011 Jun 21
13
VM disk I/O limit patch
...blkif->waiting_reqs = 1; unplug_queue(blkif); + if(blkif->reqmin){ + if(2 == ret && (blkif->reqtime > jiffies)){ + jiffies_to_timeval(jiffies, &cur_time); + if(log_stats && (cur_time.tv_sec % 10 ==1 )) + printk(KERN_DEBUG "%s: going to sleep %d millsecs(rate=%d)\n", + current->comm, + jiffies_to_msecs(blkif->reqtime - jiffies), + blkif->reqrate); + + set_current_state(TASK_INTERRUPTIBLE); + schedule_timeout(blkif->reqtime - jiffies); + + if(log_stats && (cur_time.tv_sec % 10 ==1 )) +...
2009 Jun 18
8
Patches backported from mainline
All, Please review the patches backported to 1.4 from mainline. Sunil
2009 May 19
2
[PATCH 1/1] OCFS2: timer to queue scan of all orphan slots
On unlink, all nodes check for the dentry in dcache and if present they mark the node as unlinked. The last node that purges the inode will clean it from orphan directory. When there is a memory pressure, a dentry may not be around and hence the inode is not marked as deleted and this will lead the file to be in the orphan directory till the slot is re-used during next mount. This patch initiates