[Libsysio-commit] HEAD: libsysio/src ioctx.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2005-06-16 21:22:11
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17018 Modified Files: ioctx.c Log Message: From Cray; the UPDACCT call was sending the ioctx ptr and not the number of bytes transferred, as it should. Fix from Cray applied. Index: ioctx.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/ioctx.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -w -b -B -p -r1.23 -r1.24 --- ioctx.c 25 Feb 2005 00:01:06 -0000 1.23 +++ ioctx.c 16 Jun 2005 21:21:42 -0000 1.24 @@ -246,7 +246,7 @@ _sysio_ioctx_complete(struct ioctx *ioct /* update IO stats */ - _SYSIO_UPDACCT(ioctx->ioctx_write, ioctx); + _SYSIO_UPDACCT(ioctx->ioctx_write, ioctx->ioctx_cc); /* * Run the call-back queue. |