Re: [PVFS2-developers] patches: acache and perf counters

2006-01-04 Thread Phil Carns
Two more small changes for perf-counter.c: - line 593 still has an Ld reference (change to lld) - line 174: pc-start_time_array_ms[0] = tv.tv_sec*1000 + should be: pc-start_time_array_ms[0] = ((uint64_t)tv.tv_sec)*1000 + -Phil Phil Carns wrote: Ok, one more update. I think this is just

Re: [PVFS2-developers] patches: acache and perf counters

2005-12-30 Thread Phil Carns
Ok, one more update. I think this is just a hiccup from the merge process. Line 441 of sys-getattr.sm looks like this: -- gossip_debug(GOSSIP_ACACHE_DEBUG, acache: acache miss due to mask: [%llu]\n, llu(object_ref.handle));

[PVFS2-developers] patches: acache and perf counters

2005-12-13 Thread Phil Carns
These patches largely depend on the acache patches from this posting: http://www.beowulf-underground.org/pipermail/pvfs2-developers/2005-November/001606.html perf-counter-api.patch: - This patch overhauls the performance counter api to add quite a bit of