lkml.org 
[lkml]   [2000]   [Nov]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectPATCH: 2.4.0-test11-pre6 NTFS: new_inode namespace clash fix
This patch fixes the namespace collision in NTFS new_inode that appeared
with pre6 (have submitted it to Linus).

Thanks go to Albert Cranford <ac9410@bellsouth.net> for being the first
one to spot this.

Regards,

Anton

--

Anton Altaparmakov Phone: +44-(0)1223-333541 (lab)
Christ's College eMail: AntonA@bigfoot.com
Cambridge CB2 3BU WWW: http://www-stu.christs.cam.ac.uk/~aia21/
United Kingdom ICQ: 8561279
diff -ur linux-2.4.0-test11-pre6/fs/ntfs/fs.c linux/fs/ntfs/fs.c
--- linux-2.4.0-test11-pre6/fs/ntfs/fs.c Fri Nov 17 11:05:11 2000
+++ linux/fs/ntfs/fs.c Fri Nov 17 11:08:02 2000
@@ -428,7 +428,7 @@
int error=0;
ntfs_attribute *si;

- r=new_inode(dir->i_sb);
+ r=ntfs_new_inode(dir->i_sb);
if(!r){
error=ENOMEM;
goto fail;
@@ -500,7 +500,7 @@
goto out;

error = EIO;
- r = new_inode(dir->i_sb);
+ r = ntfs_new_inode(dir->i_sb);
if (!r)
goto out;

diff -ur linux-2.4.0-test11-pre6/fs/ntfs/inode.c linux/fs/ntfs/inode.c
--- linux-2.4.0-test11-pre6/fs/ntfs/inode.c Wed Jun 21 18:10:02 2000
+++ linux/fs/ntfs/inode.c Fri Nov 17 11:08:32 2000
@@ -1050,7 +1050,7 @@

/* We have to skip the 16 metafiles and the 8 reserved entries */
static int
-new_inode (ntfs_volume* vol,int* result)
+ntfs_new_inode (ntfs_volume* vol,int* result)
{
int byte,error;
int bit;
@@ -1236,11 +1236,11 @@
ntfs_volume* vol=dir->vol;
int byte,bit;

- error=new_inode (vol,&(result->i_number));
+ error=ntfs_new_inode (vol,&(result->i_number));
if(error==ENOSPC){
error=ntfs_extend_mft(vol);
if(error)return error;
- error=new_inode(vol,&(result->i_number));
+ error=ntfs_new_inode(vol,&(result->i_number));
}
if(error){
ntfs_error ("ntfs_get_empty_inode: no free inodes\n");
\
 
 \ /
  Last update: 2005-03-22 12:47    [W:0.020 / U:3.096 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site