|
@@ -313,10 +313,9 @@ int nfs_readdir_search_for_cookie(struct nfs_cache_array *array, nfs_readdir_des
|
|
|
if (printk_ratelimit()) {
|
|
|
pr_notice("NFS: directory %pD2 contains a readdir loop."
|
|
|
"Please contact your server vendor. "
|
|
|
- "The file: %s has duplicate cookie %llu\n",
|
|
|
- desc->file,
|
|
|
- array->array[i].string.name,
|
|
|
- *desc->dir_cookie);
|
|
|
+ "The file: %.*s has duplicate cookie %llu\n",
|
|
|
+ desc->file, array->array[i].string.len,
|
|
|
+ array->array[i].string.name, *desc->dir_cookie);
|
|
|
}
|
|
|
status = -ELOOP;
|
|
|
goto out;
|