mirror of
https://github.com/SCST-project/scst.git
synced 2026-09-26 01:44:54 +00:00
Fix kernel 3.17 checkpatch warnings about 'long long unsigned'
Avoid that checkpatch reports the following warning: WARNING: type 'long long unsigned' should be specified in 'unsigned long long' order. git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5885 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -1332,7 +1332,7 @@ retry:
|
||||
count, &off);
|
||||
set_fs(oldfs);
|
||||
TRACE_WRITE("sid %#Lx, cid %u, res %d, iov_len %zd",
|
||||
(long long unsigned int)conn->session->sid,
|
||||
(unsigned long long int)conn->session->sid,
|
||||
conn->cid, res, iop->iov_len);
|
||||
if (unlikely(res <= 0)) {
|
||||
if (res == -EAGAIN) {
|
||||
@@ -1463,7 +1463,7 @@ retry2:
|
||||
"index %lu, offset %u, size %u, cmd %p, "
|
||||
"page %p)", (sendpage != sock_no_sendpage) ?
|
||||
"sendpage" : "sock_no_sendpage",
|
||||
(long long unsigned int)conn->session->sid,
|
||||
(unsigned long long int)conn->session->sid,
|
||||
conn->cid, res, page->index,
|
||||
offset, size, write_cmnd, page);
|
||||
if (unlikely(res <= 0)) {
|
||||
@@ -1549,7 +1549,7 @@ out_err:
|
||||
{
|
||||
#endif
|
||||
PRINT_ERROR("error %d at sid:cid %#Lx:%u, cmnd %p", res,
|
||||
(long long unsigned int)conn->session->sid,
|
||||
(unsigned long long int)conn->session->sid,
|
||||
conn->cid, conn->write_cmnd);
|
||||
}
|
||||
if (ref_cmd_to_parent &&
|
||||
|
||||
Reference in New Issue
Block a user