From: Gleb C. <lna...@ya...> - 2025-08-05 13:37:59
|
Commit: f857365 GitHub URL: https://github.com/SCST-project/scst/commit/f85736549a8cd33502ebc1eedadc1d5f125bf279 Author: Gleb Chesnokov Date: 2025-08-05T16:37:31+03:00 Log Message: ----------- iscsi-scst: Remove access to page->index There is no need to print out page->index as part of the debug message. Modified Paths: -------------- iscsi-scst/kernel/nthread.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) =================================================================== diff --git a/iscsi-scst/kernel/nthread.c b/iscsi-scst/kernel/nthread.c index e4e7419..a2e8669 100644 --- a/iscsi-scst/kernel/nthread.c +++ b/iscsi-scst/kernel/nthread.c @@ -1231,10 +1231,9 @@ static int write_data(struct iscsi_conn *conn) iov_iter_bvec(&msg.msg_iter, ITER_SOURCE, &bvec, 1, sendsize); res = sock_sendmsg(sock, &msg); #endif - TRACE_WRITE("sid %#Lx cid %u: res %d (page[%p] index %lu, offset %u, sendsize %lu, size %lu, cmd %p)", + TRACE_WRITE("sid %#Lx cid %u: res %d (page[%p] offset %u, sendsize %lu, size %lu, cmd %p)", (unsigned long long)conn->session->sid, conn->cid, - res, page, page->index, offset, sendsize, size, - write_cmnd); + res, page, offset, sendsize, size, write_cmnd); if (unlikely(res <= 0)) { if (res == -EINTR) |