diff options
author | Tom Rini <trini@konsulko.com> | 2018-09-14 13:54:37 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-14 13:54:37 -0400 |
commit | 2976d3c1504960d3934a7404b0648edc28b52eb9 (patch) | |
tree | 7e615a317467705429d86bfe10827712e291de8e | |
parent | ecb10a41c9adf2c499c3d19fff96a08bb9ad2aef (diff) | |
parent | 7236e24bc4366e166b9f5f5e156f7b64cdb64949 (diff) | |
download | u-boot-2976d3c1504960d3934a7404b0648edc28b52eb9.tar.gz u-boot-2976d3c1504960d3934a7404b0648edc28b52eb9.tar.xz u-boot-2976d3c1504960d3934a7404b0648edc28b52eb9.zip |
Merge branch 'master' of git://git.denx.de/u-boot-ubi
-rw-r--r-- | fs/ubifs/super.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 9603163d8a..9939b4404f 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -2461,7 +2461,7 @@ static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags, */ ubi = open_ubi(name, UBI_READONLY); if (IS_ERR(ubi)) { - pr_err("UBIFS error (pid: %d): cannot open \"%s\", error %d", + pr_err("UBIFS error (pid: %d): cannot open \"%s\", error %d\n", current->pid, name, (int)PTR_ERR(ubi)); return ERR_CAST(ubi); } @@ -2603,7 +2603,7 @@ int ubifs_init(void) * UBIFS_BLOCK_SIZE. It is assumed that both are powers of 2. */ if (PAGE_CACHE_SIZE < UBIFS_BLOCK_SIZE) { - pr_err("UBIFS error (pid %d): VFS page cache size is %u bytes, but UBIFS requires at least 4096 bytes", + pr_err("UBIFS error (pid %d): VFS page cache size is %u bytes, but UBIFS requires at least 4096 bytes\n", current->pid, (unsigned int)PAGE_CACHE_SIZE); return -EINVAL; } @@ -2632,7 +2632,7 @@ int ubifs_init(void) err = register_filesystem(&ubifs_fs_type); if (err) { - pr_err("UBIFS error (pid %d): cannot register file system, error %d", + pr_err("UBIFS error (pid %d): cannot register file system, error %d\n", current->pid, err); goto out_dbg; } |