Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
12e807ea
Commit
12e807ea
authored
May 01, 2002
by
Anton Altaparmakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NTFS: Minor cleanups, contact details updates, remove superfluous
set_blocksize.
parent
fc5d32d7
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
16 deletions
+14
-16
CREDITS
CREDITS
+2
-3
MAINTAINERS
MAINTAINERS
+2
-1
drivers/video/matrox/matroxfb_base.c
drivers/video/matrox/matroxfb_base.c
+1
-1
fs/ntfs/inode.c
fs/ntfs/inode.c
+2
-1
fs/ntfs/super.c
fs/ntfs/super.c
+4
-7
fs/ntfs/upcase.c
fs/ntfs/upcase.c
+1
-1
fs/partitions/ldm.c
fs/partitions/ldm.c
+1
-1
fs/partitions/ldm.h
fs/partitions/ldm.h
+1
-1
No files found.
CREDITS
View file @
12e807ea
...
...
@@ -63,10 +63,9 @@ S: B-2610 Wilrijk-Antwerpen
S: Belgium
N: Anton Altaparmakov
E: aia21@c
us.cam.ac.uk
E: aia21@c
antab.net
W: http://www-stu.christs.cam.ac.uk/~aia21/
D: NTFS driver maintainer. NTFS fixes and cleanup.
D: Tiny fixes in linear md device and emu10k1 driver.
D: Author of new NTFS driver, various other kernel hacks.
S: Christ's College
S: Cambridge CB2 3BU
S: United Kingdom
...
...
MAINTAINERS
View file @
12e807ea
...
...
@@ -1146,9 +1146,10 @@ S: Maintained
NTFS FILESYSTEM
P: Anton Altaparmakov
M: aia21@c
us.cam.ac.uk
M: aia21@c
antab.net
L: linux-ntfs-dev@lists.sourceforge.net
L: linux-kernel@vger.kernel.org
W: http://linux-ntfs.sf.net/
S: Maintained
NVIDIA (RIVA) FRAMEBUFFER DRIVER
...
...
drivers/video/matrox/matroxfb_base.c
View file @
12e807ea
...
...
@@ -68,7 +68,7 @@
* "Samuel Hocevar" <sam@via.ecp.fr>
* Fixes
*
* "Anton Altaparmakov"
<AntonA@bigfoot.com>
* "Anton Altaparmakov"
* G400 MAX/non-MAX distinction
*
* "Ken Aaker" <kdaaker@rchland.vnet.ibm.com>
...
...
fs/ntfs/inode.c
View file @
12e807ea
...
...
@@ -1191,7 +1191,8 @@ void ntfs_read_inode_mount(struct inode *vi)
"for $MFT/$DATA. Driver bug or "
"corrupt $MFT. Run chkdsk."
);
ntfs_debug
(
"highest_vcn = 0x%Lx, last_vcn - 1 = 0x%Lx"
,
(
long
long
)
highest_vcn
,
(
long
long
)
last_vcn
-
1
);
(
long
long
)
highest_vcn
,
(
long
long
)
last_vcn
-
1
);
goto
put_err_out
;
}
put_attr_search_ctx
(
ctx
);
...
...
fs/ntfs/super.c
View file @
12e807ea
...
...
@@ -1555,7 +1555,7 @@ static int ntfs_fill_super(struct super_block *sb, void *opt, const int silent)
if
(
sb_set_blocksize
(
sb
,
NTFS_BLOCK_SIZE
)
!=
NTFS_BLOCK_SIZE
)
{
if
(
!
silent
)
ntfs_error
(
sb
,
"Unable to set block size."
);
goto
set_blk_size_
err_out_now
;
goto
err_out_now
;
}
/* Get the size of the device in units of NTFS_BLOCK_SIZE bytes. */
...
...
@@ -1565,7 +1565,7 @@ static int ntfs_fill_super(struct super_block *sb, void *opt, const int silent)
if
(
!
(
bh
=
read_ntfs_boot_sector
(
sb
,
silent
)))
{
if
(
!
silent
)
ntfs_error
(
sb
,
"Not an NTFS volume."
);
goto
set_blk_size_
err_out_now
;
goto
err_out_now
;
}
/*
...
...
@@ -1579,7 +1579,7 @@ static int ntfs_fill_super(struct super_block *sb, void *opt, const int silent)
if
(
!
result
)
{
if
(
!
silent
)
ntfs_error
(
sb
,
"Unsupported NTFS filesystem."
);
goto
set_blk_size_
err_out_now
;
goto
err_out_now
;
}
/*
...
...
@@ -1750,10 +1750,7 @@ static int ntfs_fill_super(struct super_block *sb, void *opt, const int silent)
printk
(
"VFS: Busy inodes after umount. Self-destruct in 5 "
"seconds. Have a nice day...
\n
"
);
}
set_blk_size_err_out_now:
/* Errors at this stage are irrelevant. */
// FIXME: This should be done in fs/super.c::get_sb_bdev() itself! (AIA)
sb_set_blocksize
(
sb
,
sb
->
s_old_blocksize
);
err_out_now:
sb
->
u
.
generic_sbp
=
NULL
;
kfree
(
vol
);
...
...
@@ -1936,7 +1933,7 @@ static void __exit exit_ntfs_fs(void)
}
EXPORT_NO_SYMBOLS
;
MODULE_AUTHOR
(
"Anton Altaparmakov <aia21@ca
m.ac.uk
>"
);
MODULE_AUTHOR
(
"Anton Altaparmakov <aia21@ca
ntab.net
>"
);
MODULE_DESCRIPTION
(
"NTFS 1.2/3.x driver"
);
MODULE_LICENSE
(
"GPL"
);
#ifdef DEBUG
...
...
fs/ntfs/upcase.c
View file @
12e807ea
...
...
@@ -3,7 +3,7 @@
* Part of the Linux-NTFS project.
*
* Copyright (C) 2001 Richard Russon <ntfs@flatcap.org>
* Copyright (c) 2001
Anton Altaparmakov <aia21@cam.ac.uk>
* Copyright (c) 2001
,2002 Anton Altaparmakov
*
* Modified for mkntfs inclusion 9 June 2001 by Anton Altaparmakov.
* Modified for kernel inclusion 10 September 2001 by Anton Altparmakov.
...
...
fs/partitions/ldm.c
View file @
12e807ea
...
...
@@ -2,7 +2,7 @@
* ldm - Part of the Linux-NTFS project.
*
* Copyright (C) 2001 Richard Russon <ldm@flatcap.org>
* Copyright (C) 2001 Anton Altaparmakov
<antona@users.sf.net>
(AIA)
* Copyright (C) 2001 Anton Altaparmakov (AIA)
*
* Documentation is available at http://linux-ntfs.sf.net/ldm
*
...
...
fs/partitions/ldm.h
View file @
12e807ea
...
...
@@ -4,7 +4,7 @@
* ldm - Part of the Linux-NTFS project.
*
* Copyright (C) 2001 Richard Russon <ldm@flatcap.org>
* Copyright (C) 2001 Anton Altaparmakov
<antona@users.sf.net>
* Copyright (C) 2001 Anton Altaparmakov
*
* Documentation is available at http://linux-ntfs.sf.net/ldm
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment