Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1338832 > unrolled thread
| Started by | Simon Quigley <tsimonq2@ubuntu.com> |
|---|---|
| First post | 2016-02-21 02:40 +0100 |
| Last post | 2016-02-21 02:40 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 3/3] btrfs: backref: Fixed string error generated by Checkpatch Simon Quigley <tsimonq2@ubuntu.com> - 2016-02-21 02:40 +0100
| From | Simon Quigley <tsimonq2@ubuntu.com> |
|---|---|
| Date | 2016-02-21 02:40 +0100 |
| Subject | [PATCH 3/3] btrfs: backref: Fixed string error generated by Checkpatch |
| Message-ID | <r4ra9-6CT-1@gated-at.bofh.it> |
Checkpatch threw an error that this string was on two lines.
I put the string on one line and the variables on the other
Signed-off-by: Simon Quigley <tsimonq2@ubuntu.com>
---
fs/btrfs/backref.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/fs/btrfs/backref.c b/fs/btrfs/backref.c
index 632845a..6e694f7 100644
--- a/fs/btrfs/backref.c
+++ b/fs/btrfs/backref.c
@@ -1636,9 +1636,8 @@ static int iterate_leaf_refs(struct extent_inode_elem *inode_list,
int ret = 0;
for (eie = inode_list; eie; eie = eie->next) {
- pr_debug("ref for %llu resolved, key (%llu EXTEND_DATA %llu), "
- "root %llu\n", extent_item_objectid,
- eie->inum, eie->offset, root);
+ pr_debug("ref for %llu resolved, key (%llu EXTEND_DATA %llu), root %llu\n",
+ extent_item_objectid, eie->inum, eie->offset, root);
ret = iterate(eie->inum, eie->offset, root, ctx);
if (ret) {
pr_debug("stopping iteration for %llu due to ret=%d\n",
--
2.7.0
Back to top | Article view | linux.kernel
csiph-web