diff options
author | Jean Delvare <khali@linux-fr.org> | 2011-07-16 12:10:35 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-07-22 10:47:15 -0400 |
commit | df2e301fee3c2c2a87592151397ad7699bb14c37 (patch) | |
tree | 09364e1443d8cac6c415af5e8d07b2b37793b68e | |
parent | 497888cf69bf607ac1fe061a6437e0a670b0022f (diff) |
fs: Merge split strings
No idea why these were split in the first place...
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | fs/ecryptfs/keystore.c | 2 | ||||
-rw-r--r-- | fs/jffs2/readinode.c | 2 | ||||
-rw-r--r-- | fs/xfs/xfs_dir2_node.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/fs/ecryptfs/keystore.c b/fs/ecryptfs/keystore.c index 27a7fefb83eb..fa8049ecdc64 100644 --- a/fs/ecryptfs/keystore.c +++ b/fs/ecryptfs/keystore.c | |||
@@ -2248,7 +2248,7 @@ write_tag_3_packet(char *dest, size_t *remaining_bytes, | |||
2248 | auth_tok->token.password.session_key_encryption_key, | 2248 | auth_tok->token.password.session_key_encryption_key, |
2249 | crypt_stat->key_size); | 2249 | crypt_stat->key_size); |
2250 | ecryptfs_printk(KERN_DEBUG, | 2250 | ecryptfs_printk(KERN_DEBUG, |
2251 | "Cached session key " "encryption key: \n"); | 2251 | "Cached session key encryption key:\n"); |
2252 | if (ecryptfs_verbosity > 0) | 2252 | if (ecryptfs_verbosity > 0) |
2253 | ecryptfs_dump_hex(session_key_encryption_key, 16); | 2253 | ecryptfs_dump_hex(session_key_encryption_key, 16); |
2254 | } | 2254 | } |
diff --git a/fs/jffs2/readinode.c b/fs/jffs2/readinode.c index 2ab1a0d91210..ee57bac1ba6d 100644 --- a/fs/jffs2/readinode.c +++ b/fs/jffs2/readinode.c | |||
@@ -1041,7 +1041,7 @@ static int jffs2_get_inode_nodes(struct jffs2_sb_info *c, struct jffs2_inode_inf | |||
1041 | /* FIXME: point() */ | 1041 | /* FIXME: point() */ |
1042 | err = jffs2_flash_read(c, ref_offset(ref), len, &retlen, buf); | 1042 | err = jffs2_flash_read(c, ref_offset(ref), len, &retlen, buf); |
1043 | if (err) { | 1043 | if (err) { |
1044 | JFFS2_ERROR("can not read %d bytes from 0x%08x, " "error code: %d.\n", len, ref_offset(ref), err); | 1044 | JFFS2_ERROR("can not read %d bytes from 0x%08x, error code: %d.\n", len, ref_offset(ref), err); |
1045 | goto free_out; | 1045 | goto free_out; |
1046 | } | 1046 | } |
1047 | 1047 | ||
diff --git a/fs/xfs/xfs_dir2_node.c b/fs/xfs/xfs_dir2_node.c index a0aab7d3294f..702d436e239c 100644 --- a/fs/xfs/xfs_dir2_node.c +++ b/fs/xfs/xfs_dir2_node.c | |||
@@ -1641,7 +1641,7 @@ xfs_dir2_node_addname_int( | |||
1641 | 1641 | ||
1642 | if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) { | 1642 | if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) { |
1643 | xfs_alert(mp, | 1643 | xfs_alert(mp, |
1644 | "%s: dir ino " "%llu needed freesp block %lld for\n" | 1644 | "%s: dir ino %llu needed freesp block %lld for\n" |
1645 | " data block %lld, got %lld ifbno %llu lastfbno %d", | 1645 | " data block %lld, got %lld ifbno %llu lastfbno %d", |
1646 | __func__, (unsigned long long)dp->i_ino, | 1646 | __func__, (unsigned long long)dp->i_ino, |
1647 | (long long)xfs_dir2_db_to_fdb(mp, dbno), | 1647 | (long long)xfs_dir2_db_to_fdb(mp, dbno), |