Skip to content

Commit

Permalink
fs/ufs: use pr_fmt
Browse files Browse the repository at this point in the history
Replace UFS-fs, UFS-fs: and UFS: by pr_fmt with module name "ufs: "

Signed-off-by: Fabian Frederick <[email protected]>
Cc: Evgeniy Dushistov <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Fabian Frederick authored and torvalds committed Aug 8, 2014
1 parent a9814c5 commit de771bd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
15 changes: 7 additions & 8 deletions fs/ufs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
* Evgeniy Dushistov <[email protected]>, 2007
*/


#include <linux/exportfs.h>
#include <linux/module.h>
#include <linux/bitops.h>
Expand Down Expand Up @@ -310,13 +309,13 @@ void ufs_error (struct super_block * sb, const char * function,
va_end (args);
switch (UFS_SB(sb)->s_mount_opt & UFS_MOUNT_ONERROR) {
case UFS_MOUNT_ONERROR_PANIC:
panic ("UFS-fs panic (device %s): %s: %s\n",
panic("panic (device %s): %s: %s\n",
sb->s_id, function, error_buf);

case UFS_MOUNT_ONERROR_LOCK:
case UFS_MOUNT_ONERROR_UMOUNT:
case UFS_MOUNT_ONERROR_REPAIR:
pr_crit("UFS-fs error (device %s): %s: %s\n",
pr_crit("error (device %s): %s: %s\n",
sb->s_id, function, error_buf);
}
}
Expand All @@ -340,7 +339,7 @@ void ufs_panic (struct super_block * sb, const char * function,
vsnprintf (error_buf, sizeof(error_buf), fmt, args);
va_end (args);
sb->s_flags |= MS_RDONLY;
pr_crit("UFS-fs panic (device %s): %s: %s\n",
pr_crit("panic (device %s): %s: %s\n",
sb->s_id, function, error_buf);
}

Expand All @@ -352,7 +351,7 @@ void ufs_warning (struct super_block * sb, const char * function,
va_start (args, fmt);
vsnprintf (error_buf, sizeof(error_buf), fmt, args);
va_end (args);
pr_warn("UFS-fs warning (device %s): %s: %s\n",
pr_warn("warning (device %s): %s: %s\n",
sb->s_id, function, error_buf);
}

Expand Down Expand Up @@ -464,12 +463,12 @@ static int ufs_parse_options (char * options, unsigned * mount_options)
ufs_set_opt (*mount_options, ONERROR_UMOUNT);
break;
case Opt_onerror_repair:
pr_err("UFS-fs: Unable to do repair on error, will lock lock instead\n");
pr_err("Unable to do repair on error, will lock lock instead\n");
ufs_clear_opt (*mount_options, ONERROR);
ufs_set_opt (*mount_options, ONERROR_REPAIR);
break;
default:
pr_err("UFS-fs: Invalid option: \"%s\" or missing value\n", p);
pr_err("Invalid option: \"%s\" or missing value\n", p);
return 0;
}
}
Expand Down Expand Up @@ -972,7 +971,7 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent)

again:
if (!sb_set_blocksize(sb, block_size)) {
pr_err("UFS: failed to set blocksize\n");
pr_err("failed to set blocksize\n");
goto failed;
}

Expand Down
6 changes: 6 additions & 0 deletions fs/ufs/ufs.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#ifndef _UFS_UFS_H
#define _UFS_UFS_H 1

#ifdef pr_fmt
#undef pr_fmt
#endif

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#define UFS_MAX_GROUP_LOADED 8
#define UFS_CGNO_EMPTY ((unsigned)-1)

Expand Down

0 comments on commit de771bd

Please sign in to comment.