diff options
-rw-r--r-- | fs/exofs/super.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fs/exofs/super.c b/fs/exofs/super.c index 9f500dec3b59..920f0165edf3 100644 --- a/fs/exofs/super.c +++ b/fs/exofs/super.c | |||
@@ -257,6 +257,15 @@ static void exofs_write_super(struct super_block *sb) | |||
257 | sb->s_dirt = 0; | 257 | sb->s_dirt = 0; |
258 | } | 258 | } |
259 | 259 | ||
260 | static void _exofs_print_device(const char *msg, const char *dev_path, | ||
261 | struct osd_dev *od, u64 pid) | ||
262 | { | ||
263 | const struct osd_dev_info *odi = osduld_device_info(od); | ||
264 | |||
265 | printk(KERN_NOTICE "exofs: %s %s osd_name-%s pid-0x%llx\n", | ||
266 | msg, dev_path ?: "", odi->osdname, _LLU(pid)); | ||
267 | } | ||
268 | |||
260 | /* | 269 | /* |
261 | * This function is called when the vfs is freeing the superblock. We just | 270 | * This function is called when the vfs is freeing the superblock. We just |
262 | * need to free our own part. | 271 | * need to free our own part. |
@@ -279,6 +288,7 @@ static void exofs_put_super(struct super_block *sb) | |||
279 | msecs_to_jiffies(100)); | 288 | msecs_to_jiffies(100)); |
280 | } | 289 | } |
281 | 290 | ||
291 | _exofs_print_device("Unmounting", NULL, sbi->s_dev, sbi->s_pid); | ||
282 | osduld_put_device(sbi->s_dev); | 292 | osduld_put_device(sbi->s_dev); |
283 | kfree(sb->s_fs_info); | 293 | kfree(sb->s_fs_info); |
284 | sb->s_fs_info = NULL; | 294 | sb->s_fs_info = NULL; |
@@ -395,6 +405,7 @@ static int exofs_fill_super(struct super_block *sb, void *data, int silent) | |||
395 | goto free_sbi; | 405 | goto free_sbi; |
396 | } | 406 | } |
397 | 407 | ||
408 | _exofs_print_device("Mounting", opts->dev_name, sbi->s_dev, sbi->s_pid); | ||
398 | ret = 0; | 409 | ret = 0; |
399 | out: | 410 | out: |
400 | if (or) | 411 | if (or) |