public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ronni Nielsen <theronni@gmail.com>
To: LKML <linux-kernel@vger.kernel.org>
Subject: [patch] fs/libfs.c >80 columns ine break fix
Date: Sun, 04 Feb 2007 15:10:10 +0100	[thread overview]
Message-ID: <45C5E942.2050700@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 157 bytes --]

This is a patch agains linus' 2.6 git tree which adds linebreaks to an 
 >80 columns line in fs/libfs.c

Signed-off-by: Ronni Nielsen <theronni@gmail.com>



[-- Attachment #2: libfs.c.diff --]
[-- Type: text/plain, Size: 598 bytes --]

diff --git a/fs/libfs.c b/fs/libfs.c
index 503898d..ea43af7 100644
--- a/fs/libfs.c
+++ b/fs/libfs.c
@@ -159,7 +159,10 @@ int dcache_readdir(struct file * filp, void * dirent, filldir_t filldir)
 					continue;
 
 				spin_unlock(&dcache_lock);
-				if (filldir(dirent, next->d_name.name, next->d_name.len, filp->f_pos, next->d_inode->i_ino, dt_type(next->d_inode)) < 0)
+				if (filldir(dirent, next->d_name.name, 
+						next->d_name.len, filp->f_pos, 
+						next->d_inode->i_ino, 
+						dt_type(next->d_inode)) < 0)
 					return 0;
 				spin_lock(&dcache_lock);
 				/* next is still alive */

                 reply	other threads:[~2007-02-04 14:57 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=45C5E942.2050700@gmail.com \
    --to=theronni@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox