diff options
Diffstat (limited to 'fs/affs/dir.c')
| -rw-r--r-- | fs/affs/dir.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/fs/affs/dir.c b/fs/affs/dir.c index cbbda476a805..59f07bec92a6 100644 --- a/fs/affs/dir.c +++ b/fs/affs/dir.c @@ -54,8 +54,8 @@ affs_readdir(struct file *file, struct dir_context *ctx)  	u32			 ino;  	int			 error = 0; -	pr_debug("AFFS: readdir(ino=%lu,f_pos=%lx)\n", -		 inode->i_ino, (unsigned long)ctx->pos); +	pr_debug("%s(ino=%lu,f_pos=%lx)\n", +		 __func__, inode->i_ino, (unsigned long)ctx->pos);  	if (ctx->pos < 2) {  		file->private_data = (void *)0; @@ -81,7 +81,7 @@ affs_readdir(struct file *file, struct dir_context *ctx)  	 */  	ino = (u32)(long)file->private_data;  	if (ino && file->f_version == inode->i_version) { -		pr_debug("AFFS: readdir() left off=%d\n", ino); +		pr_debug("readdir() left off=%d\n", ino);  		goto inside;  	} @@ -117,7 +117,7 @@ inside:  			namelen = min(AFFS_TAIL(sb, fh_bh)->name[0], (u8)30);  			name = AFFS_TAIL(sb, fh_bh)->name + 1; -			pr_debug("AFFS: readdir(): dir_emit(\"%.*s\", " +			pr_debug("readdir(): dir_emit(\"%.*s\", "  				 "ino=%u), hash=%d, f_pos=%x\n",  				 namelen, name, ino, hash_pos, (u32)ctx->pos); | 
