blktrace.git
17 years ago[PATCH] Added store_barrier() for S390
Jens Axboe [Thu, 7 Sep 2006 16:36:04 +0000 (18:36 +0200)]
[PATCH] Added store_barrier() for S390

Signed-off-by: Jan Blunck <jblunck@suse.de>
17 years ago[PATCH] Fixed the Makefile in btt/
Jan Blunck [Thu, 7 Sep 2006 16:35:17 +0000 (18:35 +0200)]
[PATCH] Fixed the Makefile in btt/

Signed-off-by: Jan Blunck <jblunck@suse.de>
17 years ago[PATCH] bug in btt/output.c
Martin Peschke [Wed, 6 Sep 2006 14:54:45 +0000 (16:54 +0200)]
[PATCH] bug in btt/output.c

This patch fixes a copy'n paste bug.

17 years ago[PATCH] BTT: Improve correctness of average block size merged
Alan David Brunelle [Wed, 6 Sep 2006 13:55:28 +0000 (15:55 +0200)]
[PATCH] BTT: Improve correctness of average block size merged

Made merge average block size predicated by IOs issued.

17 years ago[PATCH] email update
Jens Axboe [Tue, 5 Sep 2006 08:47:37 +0000 (10:47 +0200)]
[PATCH] email update

17 years ago[PATCH] Ignore PC packets in btt
Alan David Brunelle [Fri, 1 Sep 2006 07:26:30 +0000 (09:26 +0200)]
[PATCH] Ignore PC packets in btt

BTT isn't really meant to trace those, and is causing problems with some
seek additions to btt I'm working on.

17 years ago[PATCH] Fixup relayfs references and kill kernel patch
Jens Axboe [Mon, 7 Aug 2006 10:25:08 +0000 (12:25 +0200)]
[PATCH] Fixup relayfs references and kill kernel patch

2.6.17 has shipped and has support for blktrace, so no need to
carry around the older 2.6.16 patch anymore.

17 years ago[PATCH] Support for logging metadata IO requests
Jens Axboe [Sun, 23 Jul 2006 00:13:20 +0000 (02:13 +0200)]
[PATCH] Support for logging metadata IO requests

17 years ago[PATCH] Support for readahead tracing
Nathan Scott [Thu, 6 Jul 2006 08:04:23 +0000 (10:04 +0200)]
[PATCH] Support for readahead tracing

These are the userspace changes to allow blktrace to distinguish
readahead from non-readahead reads.

17 years ago[PATCH] Fixup git web reference
Jens Axboe [Wed, 5 Jul 2006 11:03:13 +0000 (13:03 +0200)]
[PATCH] Fixup git web reference

17 years ago[PATCH] btt: finalize the INLINE fixup
Jens Axboe [Thu, 25 May 2006 23:23:56 +0000 (01:23 +0200)]
[PATCH] btt: finalize the INLINE fixup

17 years ago[PATCH] btt: Kill DO_INLINE and add -g
Jens Axboe [Thu, 25 May 2006 23:19:50 +0000 (01:19 +0200)]
[PATCH] btt: Kill DO_INLINE and add -g

17 years ago[PATCH] Add Alan's btt tool
Jens Axboe [Thu, 25 May 2006 23:16:17 +0000 (01:16 +0200)]
[PATCH] Add Alan's btt tool

18 years ago[PATCH] docs updates: relayfs->debugfs
Tomasz Torcz [Wed, 17 May 2006 13:13:02 +0000 (15:13 +0200)]
[PATCH] docs updates: relayfs->debugfs

documentation still mentions relayfs, but I believe debugfs is correct.
Small fix attached.

18 years ago[PATCH] blktrace.c should ignore SIGPIPE
Alex Polvi [Mon, 8 May 2006 05:15:50 +0000 (07:15 +0200)]
[PATCH] blktrace.c should ignore SIGPIPE

After sending a SIGINT to a "blktrace .. | blkparse .. " pipeline,
occasionally I would not be able to run blktrace again. On my next run
of the same pipeline I would get the following error:

cs411vm:/usr/src/bt# ./blktrace -d /dev/sdb -o - | ./blkparse -i -
BLKTRACESETUP: No such file or directory
Failed to start trace on /dev/sdb

After rebooting, I could reproduce this by starting the pipeline, and
kicking off a big write and sending a SIGINT to blktrace. The following
is what I used for a write:

while [ 1 ]
do
    dd if=/dev/zero of=/test/write bs=1M
done

It seemed like blktrace was not handling signals correctly, so I
strace'd the process to see what was happening.

Sure enough:

--- SIGINT (Interrupt) @ 0 (0) ---
ioctl(3, 0x1275, 0xb7fa6000)            = 0
sigreturn()                             = ? (mask now [])
write(1, "O\0\0\0\20\0\200\0\0\0\0\0\0\0\0\0\7taeN3\1\0\257R\260"...,
4096) = -1 EPIPE (Broken pipe)
--- SIGPIPE (Broken pipe) @ 0 (0) ---
+++ killed by SIGPIPE +++

Any idea what clean-up is not happening? I tried to figure it out, but
my only work-around was a reboot.

My patch against 2.6.17-rc3 just tells blktrace to ignore SIGPIPE.
Nothing crazy. :) blktrace already does enough error checking elsewhere
to handle a bad write.

On a completely unrelated note, the write_data function calls fwrite,
which will not return -1 on error. Instead you'll need to use ferror to
check if there was a problem. I'm not sure if this is a cause of any
bugs, but it seemed worth mentioning.

Furthermore, I updated the URLs in the documentation to point at a valid
git repo.

18 years ago[PATCH] fread/fwrite error handling
Jens Axboe [Mon, 8 May 2006 05:13:39 +0000 (07:13 +0200)]
[PATCH] fread/fwrite error handling

Need to check ferror(), not return value. Thanks to Alex Polvi.

18 years ago[PATCH] blktrace: fix sendfile problem with > buf_size xmits
Tom Zanussi [Tue, 28 Mar 2006 06:15:22 +0000 (08:15 +0200)]
[PATCH] blktrace: fix sendfile problem with > buf_size xmits

Basically, it add buf_size, buf_nr and page_size to the net header and
this info is put into each tip, for easy access in mmap_subbuf().  The
global buf_size, etc is still used by clients, since the global value is
all they need (for clients, the tip is filled in with the global values
anyway, so that mmap_subbuf() can use them, maybe the tip->buf_size
should be used everywhere instead for consistency and only use the
global values for initial args.  Also, each tip doesn't really need to
have these values, they could be stored in tip->device but I thought it
would be easier and quicker to access tip->buf_size rather than
tip->device->buf_size).  Actually, this data only needs to be sent once
per trace, but since there's no header covering the entire trace, sends
it each time.  Could be an optimization to make later...

I've tested it using sendfile over the network with different buffer
sizes, and with normal non-sendfile network and non-network tracing
straight to disk, and haven't seen any problems.  Each test generated a
little over 1Gb of trace data in a little under 2 minutes, just under 23
million events after parsing, so it looks to me like it's doing the job
at this point...

18 years ago[PATCH] Remove sysfs bits from kernel patch to match 2.6.16+
Jens Axboe [Fri, 24 Mar 2006 10:16:46 +0000 (11:16 +0100)]
[PATCH] Remove sysfs bits from kernel patch to match 2.6.16+

18 years ago[PATCH] Rename kernel patch to 2.6.16 proper.
Jens Axboe [Fri, 24 Mar 2006 10:15:03 +0000 (11:15 +0100)]
[PATCH] Rename kernel patch to 2.6.16 proper.

18 years ago[PATCH] Update references to kernel patch and its inclusion in mainline
Jens Axboe [Fri, 24 Mar 2006 10:14:37 +0000 (11:14 +0100)]
[PATCH] Update references to kernel patch and its inclusion in mainline

18 years ago[PATCH: Change remap format to have mapped-to information on the left of the ->
Alan D. Brunelle [Fri, 24 Mar 2006 10:06:59 +0000 (11:06 +0100)]
[PATCH: Change remap format to have mapped-to information on the left of the ->

Pretty self-explanatory, works fine for MD devices. Looking into DM
devices next (I think that _may_ take a kernel change).

18 years ago[PATCH] blktrace: fix get_subbuf() leak
Jens Axboe [Thu, 16 Mar 2006 08:32:55 +0000 (09:32 +0100)]
[PATCH] blktrace: fix get_subbuf() leak

18 years ago[PATCH] blktrace: sendfile() poll can use -1 timeout with the flush change
Jens Axboe [Thu, 16 Mar 2006 08:28:56 +0000 (09:28 +0100)]
[PATCH] blktrace: sendfile() poll can use -1 timeout with the flush change

18 years ago[PATCH] blktrace: only print one connection info per client
Jens Axboe [Wed, 15 Mar 2006 12:57:41 +0000 (13:57 +0100)]
[PATCH] blktrace: only print one connection info per client

18 years ago[PATCH] kernel: remember to flush relay channel on trace stop
Jens Axboe [Wed, 15 Mar 2006 12:33:36 +0000 (13:33 +0100)]
[PATCH] kernel: remember to flush relay channel on trace stop

18 years ago[PATCH] blktrace: fixes for the new net client sendfile
Jens Axboe [Wed, 15 Mar 2006 12:29:26 +0000 (13:29 +0100)]
[PATCH] blktrace: fixes for the new net client sendfile

18 years ago[PATCH] kernel: drop POLLMSG hack again
Jens Axboe [Wed, 15 Mar 2006 10:06:11 +0000 (11:06 +0100)]
[PATCH] kernel: drop POLLMSG hack again

18 years ago[PATCH] kernel: update to -rc6
Jens Axboe [Wed, 15 Mar 2006 08:04:53 +0000 (09:04 +0100)]
[PATCH] kernel: update to -rc6

18 years ago[PATCH] blktrace: remember to check flush_subbuf() return value
Jens Axboe [Tue, 14 Mar 2006 13:15:33 +0000 (14:15 +0100)]
[PATCH] blktrace: remember to check flush_subbuf() return value

Also label 'maxlen' as unused instead of using casting tricks.

18 years ago[PATCH] blktrace: per-cpu net connections
Tom Zanussi [Tue, 14 Mar 2006 08:02:07 +0000 (09:02 +0100)]
[PATCH] blktrace: per-cpu net connections

We can get reliable poll() without POLLMSG tricks, if we open a
net connection per CPU.

18 years ago[PATCH] blktrace: handle case where output directory is not set
Alan D. Brunelle [Thu, 2 Mar 2006 11:46:41 +0000 (12:46 +0100)]
[PATCH] blktrace: handle case where output directory is not set

18 years ago[PATCH] kernel: update kernel patch to include Toms read/sendfile consolidation
Jens Axboe [Mon, 27 Feb 2006 15:37:08 +0000 (16:37 +0100)]
[PATCH] kernel: update kernel patch to include Toms read/sendfile consolidation

18 years ago[PATCH] blktrace: make sendfile usage the default
Jens Axboe [Mon, 27 Feb 2006 11:15:49 +0000 (12:15 +0100)]
[PATCH] blktrace: make sendfile usage the default

18 years ago[PATCH] kernel: -rc5 update
Jens Axboe [Mon, 27 Feb 2006 11:01:47 +0000 (12:01 +0100)]
[PATCH] kernel: -rc5 update

18 years ago[PATCH] blkprase: binary dump capability + notify added
Alan D. Brunelle [Mon, 27 Feb 2006 07:10:32 +0000 (08:10 +0100)]
[PATCH] blkprase: binary dump capability + notify added

Here is a proposed patch which would allow blkparse to dump its output
to a binary file (in addition to the ascii output). It adds a new '-d
<file>' parameter.

The purpose of this would be to allow for the easier handling of the
collected data by analysis tools. [Rather than having to parse the
textual output from blkparse, or duplicate the collation efforts of
blkparse itself.]

18 years ago[PATCH] kernel: relay files are now in debugfs
Jens Axboe [Mon, 27 Feb 2006 07:06:17 +0000 (08:06 +0100)]
[PATCH] kernel: relay files are now in debugfs

18 years ago[PATCH] blktrace: relay files are now in debugfs
Jens Axboe [Mon, 27 Feb 2006 07:05:22 +0000 (08:05 +0100)]
[PATCH] blktrace: relay files are now in debugfs

18 years ago[PATCH] Mark as 0.99.1
Jens Axboe [Thu, 23 Feb 2006 14:16:18 +0000 (15:16 +0100)]
[PATCH] Mark as 0.99.1

18 years ago[PATCH] blktrace: add __for_each_foo() for nc's, and fix crash on bad realloc blktrace-0.99.1
Jens Axboe [Thu, 23 Feb 2006 14:14:29 +0000 (15:14 +0100)]
[PATCH] blktrace: add __for_each_foo() for nc's, and fix crash on bad realloc

18 years ago[PATCH] blktrace: fix possible crash on exit without ever opening an ofile
Jens Axboe [Thu, 23 Feb 2006 13:51:17 +0000 (14:51 +0100)]
[PATCH] blktrace: fix possible crash on exit without ever opening an ofile

18 years ago[PATCH] blktrace: support multiple network connections
Jens Axboe [Thu, 23 Feb 2006 12:29:06 +0000 (13:29 +0100)]
[PATCH] blktrace: support multiple network connections

18 years ago[PATCH] blktrace: make sure net traces for multiple devices end up in same dir
Jens Axboe [Thu, 23 Feb 2006 10:49:38 +0000 (11:49 +0100)]
[PATCH] blktrace: make sure net traces for multiple devices end up in same dir

18 years ago[PATCH] blktrace: make net server dropped count be per-device
Jens Axboe [Thu, 23 Feb 2006 09:53:25 +0000 (10:53 +0100)]
[PATCH] blktrace: make net server dropped count be per-device

Require client to send a close event for each device.

18 years ago[PATCH] kernel: update relayfs to set POLLMSG on subbuffer switch
Jens Axboe [Thu, 23 Feb 2006 09:46:00 +0000 (10:46 +0100)]
[PATCH] kernel: update relayfs to set POLLMSG on subbuffer switch

18 years ago[PATCH] blktrace: reduce context switches a lot, event count fix, etc
Jens Axboe [Thu, 23 Feb 2006 09:43:56 +0000 (10:43 +0100)]
[PATCH] blktrace: reduce context switches a lot, event count fix, etc

Transmit dropped events over the net as well, so the other end know if
we lost events.  Use POLLMSG from relayfs to indicate subbuf switch.

18 years ago[PATCH] kernel: update to latest patch
Jens Axboe [Thu, 23 Feb 2006 07:56:20 +0000 (08:56 +0100)]
[PATCH] kernel: update to latest patch

18 years ago[PATCH] blktrace: remove padding logic, it's not needed with the new sendfile()
Tom Zanussi [Thu, 23 Feb 2006 07:46:32 +0000 (08:46 +0100)]
[PATCH] blktrace: remove padding logic, it's not needed with the new sendfile()

18 years ago[PATCH] blktrace: get rid of signal hacks in accepting new connections
Jens Axboe [Wed, 22 Feb 2006 20:57:00 +0000 (21:57 +0100)]
[PATCH] blktrace: get rid of signal hacks in accepting new connections

18 years ago[PATCH] README and blkrawverify minor update
Jens Axboe [Wed, 22 Feb 2006 19:12:21 +0000 (20:12 +0100)]
[PATCH] README and blkrawverify minor update

Don't create an output file if the input argument is bogus or fails

18 years ago[PATCH] blktrace: no need to track ts->offset anymore
Jens Axboe [Wed, 22 Feb 2006 12:23:30 +0000 (13:23 +0100)]
[PATCH] blktrace: no need to track ts->offset anymore

18 years ago[PATCH] kernel: update to fix padding read
Jens Axboe [Wed, 22 Feb 2006 12:11:29 +0000 (13:11 +0100)]
[PATCH] kernel: update to fix padding read

18 years ago[PATCH] blktrace: serialize sendfile sendout, then we can use poll reliably
Jens Axboe [Wed, 22 Feb 2006 12:12:32 +0000 (13:12 +0100)]
[PATCH] blktrace: serialize sendfile sendout, then we can use poll reliably

18 years ago[PATCH] kernel: last minute typo in kernel commit...
Jens Axboe [Tue, 21 Feb 2006 15:37:20 +0000 (16:37 +0100)]
[PATCH] kernel: last minute typo in kernel commit...

18 years ago[PATCH] kernel: redo the relayfs ->sendfile implementation
Jens Axboe [Tue, 21 Feb 2006 15:35:32 +0000 (16:35 +0100)]
[PATCH] kernel: redo the relayfs ->sendfile implementation

18 years ago[PATCH] blktrace: is_done() typo...
Jens Axboe [Tue, 21 Feb 2006 14:36:05 +0000 (15:36 +0100)]
[PATCH] blktrace: is_done() typo...

18 years ago[PATCH] blktrace: missed net_sendfile argument update
Jens Axboe [Tue, 21 Feb 2006 14:29:01 +0000 (15:29 +0100)]
[PATCH] blktrace: missed net_sendfile argument update

18 years ago[PATCH] blktrace: sendfile() improvements
Jens Axboe [Tue, 21 Feb 2006 14:32:12 +0000 (15:32 +0100)]
[PATCH] blktrace: sendfile() improvements

18 years ago[PATCH] blktrace: valid magic in received header always
Jens Axboe [Tue, 21 Feb 2006 14:24:40 +0000 (15:24 +0100)]
[PATCH] blktrace: valid magic in received header always

18 years ago[PATCH] blktrace: only do ioctl stop on local trace
Jens Axboe [Tue, 21 Feb 2006 12:21:34 +0000 (13:21 +0100)]
[PATCH] blktrace: only do ioctl stop on local trace

18 years ago[PATCH] blktrace: tip_open_output() cleanup
Jens Axboe [Mon, 20 Feb 2006 12:41:37 +0000 (13:41 +0100)]
[PATCH] blktrace: tip_open_output() cleanup

18 years ago[PATCH] blktrace: store server output in client-date directory
Jens Axboe [Mon, 20 Feb 2006 12:34:05 +0000 (13:34 +0100)]
[PATCH] blktrace: store server output in client-date directory

Otherwise it's hard to do multiple traces without overwriting data.

18 years ago[PATCH] blktrace: stop trace on SIGINT to allow drain
Jens Axboe [Mon, 20 Feb 2006 10:59:49 +0000 (11:59 +0100)]
[PATCH] blktrace: stop trace on SIGINT to allow drain

18 years ago[PATCH] blktrace: ->fd and ->pfd init in net client mode
Jens Axboe [Mon, 20 Feb 2006 10:17:39 +0000 (11:17 +0100)]
[PATCH] blktrace: ->fd and ->pfd init in net client mode

18 years ago[PATCH] blktrace: final (hopefully) data read stat updates
Jens Axboe [Mon, 20 Feb 2006 10:12:11 +0000 (11:12 +0100)]
[PATCH] blktrace: final (hopefully) data read stat updates

18 years ago[PATCH] blktrace: net server stat fixes
Jens Axboe [Mon, 20 Feb 2006 10:06:18 +0000 (11:06 +0100)]
[PATCH] blktrace: net server stat fixes

18 years ago[PATCH] blktrace: bad ->data_read increment, and poll() delay fix for sendfile()
Jens Axboe [Mon, 20 Feb 2006 09:19:30 +0000 (10:19 +0100)]
[PATCH] blktrace: bad ->data_read increment, and poll() delay fix for sendfile()

18 years ago[PATCH] blktrace: use send() for last data on quit in sendfile() path
Jens Axboe [Mon, 20 Feb 2006 08:56:56 +0000 (09:56 +0100)]
[PATCH] blktrace: use send() for last data on quit in sendfile() path

We need to do that, as we can only use full subbufs in the sendfile() path.

18 years ago[PATCH] blktrace: be a little more conservative on 'ready' subbuf bytes
Jens Axboe [Mon, 20 Feb 2006 08:30:53 +0000 (09:30 +0100)]
[PATCH] blktrace: be a little more conservative on 'ready' subbuf bytes

18 years ago[PATCH] kernel: update to -rc4, include changes for sendfile() support
Jens Axboe [Mon, 20 Feb 2006 08:19:29 +0000 (09:19 +0100)]
[PATCH] kernel: update to -rc4, include changes for sendfile() support

18 years ago[PATCH] blktrace: improve sendfile support (requires kernel change)
Jens Axboe [Mon, 20 Feb 2006 08:18:36 +0000 (09:18 +0100)]
[PATCH] blktrace: improve sendfile support (requires kernel change)

18 years agoMerge branch 'master' of ssh://axboe@router.home.kernel.dk/data/git/blktrace
Jens Axboe [Thu, 16 Feb 2006 19:07:11 +0000 (20:07 +0100)]
Merge branch 'master' of ssh://axboe@router.home.kernel.dk/data/git/blktrace

18 years ago[PATCH] blktrace: don't truncate/open local files when in net client mode
Jens Axboe [Thu, 16 Feb 2006 19:07:00 +0000 (20:07 +0100)]
[PATCH] blktrace: don't truncate/open local files when in net client mode

18 years ago[PATCH] blktrace: bad alloc in sendfile() handler
Jens Axboe [Wed, 15 Feb 2006 13:04:07 +0000 (14:04 +0100)]
[PATCH] blktrace: bad alloc in sendfile() handler

18 years ago[PATCH] kernel: update to -rc3 (has little fixes/optimizations, too)
Jens Axboe [Wed, 15 Feb 2006 09:37:41 +0000 (10:37 +0100)]
[PATCH] kernel: update to -rc3 (has little fixes/optimizations, too)

18 years ago[PATCH] blktrace: don't leak the accepted socket fd on reconnect
Jens Axboe [Wed, 15 Feb 2006 09:32:20 +0000 (10:32 +0100)]
[PATCH] blktrace: don't leak the accepted socket fd on reconnect

18 years ago[PATCH] blktrace: one more round up of data transfer
Jens Axboe [Wed, 15 Feb 2006 09:26:23 +0000 (10:26 +0100)]
[PATCH] blktrace: one more round up of data transfer

18 years ago[PATCH] blktrace: round up data read to nearest kb
Jens Axboe [Wed, 15 Feb 2006 09:25:28 +0000 (10:25 +0100)]
[PATCH] blktrace: round up data read to nearest kb

18 years ago[PATCH] blktrace: show incoming connection
Jens Axboe [Wed, 15 Feb 2006 09:17:39 +0000 (10:17 +0100)]
[PATCH] blktrace: show incoming connection

18 years ago[PATCH] blktrace: allow quit when waiting for repeat connection
Jens Axboe [Wed, 15 Feb 2006 09:14:57 +0000 (10:14 +0100)]
[PATCH] blktrace: allow quit when waiting for repeat connection

18 years ago[PATCH] blktrace: proper end-of-run cleanup for restart
Jens Axboe [Wed, 15 Feb 2006 09:07:45 +0000 (10:07 +0100)]
[PATCH] blktrace: proper end-of-run cleanup for restart

18 years ago[PATCH] blktrace: fill ops in net tip as well
Jens Axboe [Wed, 15 Feb 2006 09:01:29 +0000 (10:01 +0100)]
[PATCH] blktrace: fill ops in net tip as well

18 years ago[PATCH] blktrace: allow client/server to signal end-of-run properly
Jens Axboe [Wed, 15 Feb 2006 08:58:23 +0000 (09:58 +0100)]
[PATCH] blktrace: allow client/server to signal end-of-run properly

18 years ago[PATCH] blktrace/README: update to include description of new net parameters
Jens Axboe [Wed, 15 Feb 2006 08:33:45 +0000 (09:33 +0100)]
[PATCH] blktrace/README: update to include description of new net parameters

18 years ago[PATCH] verify_blkparse: -W warning
Jens Axboe [Wed, 15 Feb 2006 08:26:08 +0000 (09:26 +0100)]
[PATCH] verify_blkparse: -W warning

18 years ago[PATCH] blktrace: add -s sendfile option (doesn't work right now)
Jens Axboe [Wed, 15 Feb 2006 08:22:30 +0000 (09:22 +0100)]
[PATCH] blktrace: add -s sendfile option (doesn't work right now)

18 years ago[PATCH] blktrace: add ->ops for the read/get/flush methods
Jens Axboe [Wed, 15 Feb 2006 08:03:55 +0000 (09:03 +0100)]
[PATCH] blktrace: add ->ops for the read/get/flush methods

18 years ago[PATCH] blktrace: various net related fixes (accounting, stats, etc)
Jens Axboe [Tue, 14 Feb 2006 13:52:28 +0000 (14:52 +0100)]
[PATCH] blktrace: various net related fixes (accounting, stats, etc)

18 years ago[PATCH] blktrace: need to free ts->buf for networked transfer
Jens Axboe [Tue, 14 Feb 2006 13:05:59 +0000 (14:05 +0100)]
[PATCH] blktrace: need to free ts->buf for networked transfer

18 years ago[PATCH] blktrace: fix network support, don't use sendfile() yet
Jens Axboe [Tue, 14 Feb 2006 13:04:58 +0000 (14:04 +0100)]
[PATCH] blktrace: fix network support, don't use sendfile() yet

We need relayfs changed for that to work (which I only have half-done)

18 years ago[PATCH] blktrace: first cut at adding network support
Jens Axboe [Tue, 14 Feb 2006 09:51:39 +0000 (10:51 +0100)]
[PATCH] blktrace: first cut at adding network support

18 years ago[PATCH] blkrawverify: check and convert data appropriately
Jens Axboe [Tue, 14 Feb 2006 09:22:42 +0000 (10:22 +0100)]
[PATCH] blkrawverify: check and convert data appropriately

18 years ago[PATCH] check_data_endianess left in half-done state
Jens Axboe [Tue, 14 Feb 2006 09:20:22 +0000 (10:20 +0100)]
[PATCH] check_data_endianess left in half-done state

18 years ago[PATCH] blkparse: __u32 -> pid_t
Jens Axboe [Mon, 13 Feb 2006 14:53:38 +0000 (15:53 +0100)]
[PATCH] blkparse: __u32 -> pid_t

18 years ago[PATCH] kernel patch update again
Jens Axboe [Thu, 9 Feb 2006 16:08:35 +0000 (17:08 +0100)]
[PATCH] kernel patch update again

18 years ago[PATCH] blkparse: ignore multiple process pid <-> name notifications
Jens Axboe [Thu, 9 Feb 2006 15:09:06 +0000 (16:09 +0100)]
[PATCH] blkparse: ignore multiple process pid <-> name notifications

This can happen if you are doing multiple traces at the same time, then
you would get a notification after a new trace has been set up.

18 years ago[PATCH] blkparse: start unification of ppi and ppm
Jens Axboe [Thu, 9 Feb 2006 14:07:33 +0000 (15:07 +0100)]
[PATCH] blkparse: start unification of ppi and ppm

18 years ago[PATCH] kernel: update to work with latest Linus -git tree
Jens Axboe [Thu, 9 Feb 2006 13:19:20 +0000 (14:19 +0100)]
[PATCH] kernel: update to work with latest Linus -git tree

18 years ago[PATCH] kernel: update patch to match ->comm changes in blkparse
Jens Axboe [Thu, 9 Feb 2006 13:01:12 +0000 (14:01 +0100)]
[PATCH] kernel: update patch to match ->comm changes in blkparse

18 years ago[PATCH] Shrink the trace by 1/3 by removing ->comm[16]
Jens Axboe [Thu, 9 Feb 2006 12:58:34 +0000 (13:58 +0100)]
[PATCH] Shrink the trace by 1/3 by removing ->comm[16]

We now send notify messages out when we see a new process, so we don't
need to repeatedly send the same 16 bytes of name info everytime.

18 years ago[PATCH] Pin the mmap'ed output buffers in ram
Jens Axboe [Thu, 9 Feb 2006 07:34:51 +0000 (08:34 +0100)]
[PATCH] Pin the mmap'ed output buffers in ram