Commit 76cdc54a authored by David S. Miller's avatar David S. Miller

[NFSD]: Use correct format string for size_t.

parent 7ae3ddee
...@@ -363,7 +363,7 @@ nfsd_cache_append(struct svc_rqst *rqstp, struct iovec *data) ...@@ -363,7 +363,7 @@ nfsd_cache_append(struct svc_rqst *rqstp, struct iovec *data)
struct iovec *vec = &rqstp->rq_res.head[0]; struct iovec *vec = &rqstp->rq_res.head[0];
if (vec->iov_len + data->iov_len > PAGE_SIZE) { if (vec->iov_len + data->iov_len > PAGE_SIZE) {
printk(KERN_WARNING "nfsd: cached reply too large (%d).\n", printk(KERN_WARNING "nfsd: cached reply too large (%Zd).\n",
data->iov_len); data->iov_len);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment