All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Dyson <will_dyson@pobox.com>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] befs i_flags thinko
Date: Fri, 14 May 2004 12:07:28 -0400	[thread overview]
Message-ID: <1084550848.20184.7.camel@thalience> (raw)

This was caught by Jörn Engel <joern@wohnheim.fh-wedel.de> some time
ago. It is obviously correct. My public apologies to Jörn for delaying
his patch.


 linuxvfs.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

 
--- linux-2.6.4/fs/befs/linuxvfs.c~ext23_inode_flags    2004-03-21 17:43:58.000000000 +0100
+++ linux-2.6.4/fs/befs/linuxvfs.c      2004-03-24 01:01:11.000000000 +0100
@@ -376,7 +376,7 @@
        befs_ino->i_attribute = fsrun_to_cpu(sb, raw_inode->attributes);
        befs_ino->i_flags = fs32_to_cpu(sb, raw_inode->flags);
 
-       if (S_ISLNK(inode->i_mode) && !(inode->i_flags & BEFS_LONG_SYMLINK)) {
+       if (S_ISLNK(inode->i_mode) && !(befs_ino->i_flags & BEFS_LONG_SYMLINK)){
                inode->i_size = 0;
                inode->i_blocks = befs_sb->block_size / VFS_BLOCK_SIZE;
                strncpy(befs_ino->i_data.symlink, raw_inode->data.symlink,


             reply	other threads:[~2004-05-14 16:07 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-05-14 16:07 Will Dyson [this message]
2004-05-14 16:36 ` [PATCH] befs i_flags thinko Jörn Engel
2004-05-14 16:52   ` Will Dyson

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=1084550848.20184.7.camel@thalience \
    --to=will_dyson@pobox.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.