forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NTFS: writev() fix and maintenance/contact details update
Fix writev() to not keep writing the first segment over and over again instead of moving onto subsequent segments and update the NTFS entry in MAINTAINERS to reflect that Tuxera Inc. now supports the NTFS driver. Signed-off-by: Anton Altaparmakov <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
1 parent
4162cf6
commit 2818ef5
Showing
5 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4383,11 +4383,11 @@ F: Documentation/scsi/NinjaSCSI.txt | |
F: drivers/scsi/nsp32* | ||
|
||
NTFS FILESYSTEM | ||
M: Anton Altaparmakov <[email protected]> | ||
M: Anton Altaparmakov <[email protected]> | ||
L: [email protected] | ||
W: http://www.linux-ntfs.org/ | ||
W: http://www.tuxera.com/ | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git | ||
S: Maintained | ||
S: Supported | ||
F: Documentation/filesystems/ntfs.txt | ||
F: fs/ntfs/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* super.c - NTFS kernel super block handling. Part of the Linux-NTFS project. | ||
* | ||
* Copyright (c) 2001-2007 Anton Altaparmakov | ||
* Copyright (c) 2001-2011 Anton Altaparmakov and Tuxera Inc. | ||
* Copyright (c) 2001,2002 Richard Russon | ||
* | ||
* This program/include file is free software; you can redistribute it and/or | ||
|
@@ -3193,8 +3193,8 @@ static void __exit exit_ntfs_fs(void) | |
ntfs_sysctl(0); | ||
} | ||
|
||
MODULE_AUTHOR("Anton Altaparmakov <[email protected]>"); | ||
MODULE_DESCRIPTION("NTFS 1.2/3.x driver - Copyright (c) 2001-2007 Anton Altaparmakov"); | ||
MODULE_AUTHOR("Anton Altaparmakov <[email protected]>"); | ||
MODULE_DESCRIPTION("NTFS 1.2/3.x driver - Copyright (c) 2001-2011 Anton Altaparmakov and Tuxera Inc."); | ||
MODULE_VERSION(NTFS_VERSION); | ||
MODULE_LICENSE("GPL"); | ||
#ifdef DEBUG | ||
|