public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.4 reiserfs for chown32.
@ 2002-02-12 15:27 Oleg Drokin on behalf of Hans Reiser
  0 siblings, 0 replies; only message in thread
From: Oleg Drokin on behalf of Hans Reiser @ 2002-02-12 15:27 UTC (permalink / raw)
  To: marcelo, linux-kernel, reiserfs-dev

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

Hello!

    This patch fixes a problem where 32-bit uid/gid can only be set on a
    newly created file. All files that already existed at mount time
    were incorrectly marked as old format files without 32bit uid support.

    Please apply.

Bye,
    Oleg

[-- Attachment #2: pick_correct_sd_version.diff --]
[-- Type: text/plain, Size: 717 bytes --]

--- linux/fs/reiserfs/inode.c.orig	Tue Feb  5 09:44:59 2002
+++ linux/fs/reiserfs/inode.c	Tue Feb 12 16:57:46 2002
@@ -931,9 +931,6 @@
 	// (directories and symlinks)
 	struct stat_data * sd = (struct stat_data *)B_I_PITEM (bh, ih);
 
-	/* both old and new directories have old keys */
-	//version = (S_ISDIR (sd->sd_mode) ? ITEM_VERSION_1 : ITEM_VERSION_2);
-
 	inode->i_mode   = sd_v2_mode(sd);
 	inode->i_nlink  = sd_v2_nlink(sd);
 	inode->i_uid    = sd_v2_uid(sd);
@@ -953,6 +950,8 @@
 	    set_inode_item_key_version (inode, KEY_FORMAT_3_5);
 	else
             set_inode_item_key_version (inode, KEY_FORMAT_3_6);
+
+        set_inode_sd_version (inode, STAT_DATA_V2);
     }
 
     /* nopack = 0, by default */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-02-12 15:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-02-12 15:27 [PATCH] 2.4 reiserfs for chown32 Oleg Drokin on behalf of Hans Reiser

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox