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.
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
Lots of simnple overlapping additions. With a build fix from Stephen Rothwell. Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
364 changed files
with
3,807 additions
and
2,431 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,8 @@ Al Viro <[email protected]> | |
Andi Kleen <[email protected]> <[email protected]> | ||
Andi Shyti <[email protected]> <[email protected]> | ||
Andreas Herrmann <[email protected]> | ||
Andrej Shadura <[email protected]> | ||
Andrej Shadura <[email protected]> <[email protected]> | ||
Andrew Morton <[email protected]> | ||
Andrew Murray <[email protected]> <[email protected]> | ||
Andrew Murray <[email protected]> <[email protected]> | ||
|
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 |
---|---|---|
|
@@ -4,103 +4,112 @@ | |
NTFS3 | ||
===== | ||
|
||
|
||
Summary and Features | ||
==================== | ||
|
||
NTFS3 is fully functional NTFS Read-Write driver. The driver works with | ||
NTFS versions up to 3.1, normal/compressed/sparse files | ||
and journal replaying. File system type to use on mount is 'ntfs3'. | ||
NTFS3 is fully functional NTFS Read-Write driver. The driver works with NTFS | ||
versions up to 3.1. File system type to use on mount is *ntfs3*. | ||
|
||
- This driver implements NTFS read/write support for normal, sparse and | ||
compressed files. | ||
- Supports native journal replaying; | ||
- Supports extended attributes | ||
Predefined extended attributes: | ||
- 'system.ntfs_security' gets/sets security | ||
descriptor (SECURITY_DESCRIPTOR_RELATIVE) | ||
- 'system.ntfs_attrib' gets/sets ntfs file/dir attributes. | ||
Note: applied to empty files, this allows to switch type between | ||
sparse(0x200), compressed(0x800) and normal; | ||
- Supports native journal replaying. | ||
- Supports NFS export of mounted NTFS volumes. | ||
- Supports extended attributes. Predefined extended attributes: | ||
|
||
- *system.ntfs_security* gets/sets security | ||
|
||
Descriptor: SECURITY_DESCRIPTOR_RELATIVE | ||
|
||
- *system.ntfs_attrib* gets/sets ntfs file/dir attributes. | ||
|
||
Note: Applied to empty files, this allows to switch type between | ||
sparse(0x200), compressed(0x800) and normal. | ||
|
||
Mount Options | ||
============= | ||
|
||
The list below describes mount options supported by NTFS3 driver in addition to | ||
generic ones. | ||
generic ones. You can use every mount option with **no** option. If it is in | ||
this table marked with no it means default is without **no**. | ||
|
||
=============================================================================== | ||
.. flat-table:: | ||
:widths: 1 5 | ||
:fill-cells: | ||
|
||
nls=name This option informs the driver how to interpret path | ||
strings and translate them to Unicode and back. If | ||
this option is not set, the default codepage will be | ||
used (CONFIG_NLS_DEFAULT). | ||
Examples: | ||
'nls=utf8' | ||
* - iocharset=name | ||
- This option informs the driver how to interpret path strings and | ||
translate them to Unicode and back. If this option is not set, the | ||
default codepage will be used (CONFIG_NLS_DEFAULT). | ||
|
||
uid= | ||
gid= | ||
umask= Controls the default permissions for files/directories created | ||
after the NTFS volume is mounted. | ||
Example: iocharset=utf8 | ||
|
||
fmask= | ||
dmask= Instead of specifying umask which applies both to | ||
files and directories, fmask applies only to files and | ||
dmask only to directories. | ||
* - uid= | ||
- :rspan:`1` | ||
* - gid= | ||
|
||
nohidden Files with the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) | ||
attribute will not be shown under Linux. | ||
* - umask= | ||
- Controls the default permissions for files/directories created after | ||
the NTFS volume is mounted. | ||
|
||
sys_immutable Files with the Windows-specific SYSTEM | ||
(FILE_ATTRIBUTE_SYSTEM) attribute will be marked as system | ||
immutable files. | ||
* - dmask= | ||
- :rspan:`1` Instead of specifying umask which applies both to files and | ||
directories, fmask applies only to files and dmask only to directories. | ||
* - fmask= | ||
|
||
discard Enable support of the TRIM command for improved performance | ||
on delete operations, which is recommended for use with the | ||
solid-state drives (SSD). | ||
* - noacsrules | ||
- "No access rules" mount option sets access rights for files/folders to | ||
777 and owner/group to root. This mount option absorbs all other | ||
permissions. | ||
|
||
force Forces the driver to mount partitions even if 'dirty' flag | ||
(volume dirty) is set. Not recommended for use. | ||
- Permissions change for files/folders will be reported as successful, | ||
but they will remain 777. | ||
|
||
sparse Create new files as "sparse". | ||
- Owner/group change will be reported as successful, butthey will stay | ||
as root. | ||
|
||
showmeta Use this parameter to show all meta-files (System Files) on | ||
a mounted NTFS partition. | ||
By default, all meta-files are hidden. | ||
* - nohidden | ||
- Files with the Windows-specific HIDDEN (FILE_ATTRIBUTE_HIDDEN) attribute | ||
will not be shown under Linux. | ||
|
||
prealloc Preallocate space for files excessively when file size is | ||
increasing on writes. Decreases fragmentation in case of | ||
parallel write operations to different files. | ||
* - sys_immutable | ||
- Files with the Windows-specific SYSTEM (FILE_ATTRIBUTE_SYSTEM) attribute | ||
will be marked as system immutable files. | ||
|
||
no_acs_rules "No access rules" mount option sets access rights for | ||
files/folders to 777 and owner/group to root. This mount | ||
option absorbs all other permissions: | ||
- permissions change for files/folders will be reported | ||
as successful, but they will remain 777; | ||
- owner/group change will be reported as successful, but | ||
they will stay as root | ||
* - discard | ||
- Enable support of the TRIM command for improved performance on delete | ||
operations, which is recommended for use with the solid-state drives | ||
(SSD). | ||
|
||
acl Support POSIX ACLs (Access Control Lists). Effective if | ||
supported by Kernel. Not to be confused with NTFS ACLs. | ||
The option specified as acl enables support for POSIX ACLs. | ||
* - force | ||
- Forces the driver to mount partitions even if volume is marked dirty. | ||
Not recommended for use. | ||
|
||
noatime All files and directories will not update their last access | ||
time attribute if a partition is mounted with this parameter. | ||
This option can speed up file system operation. | ||
* - sparse | ||
- Create new files as sparse. | ||
|
||
=============================================================================== | ||
* - showmeta | ||
- Use this parameter to show all meta-files (System Files) on a mounted | ||
NTFS partition. By default, all meta-files are hidden. | ||
|
||
ToDo list | ||
========= | ||
* - prealloc | ||
- Preallocate space for files excessively when file size is increasing on | ||
writes. Decreases fragmentation in case of parallel write operations to | ||
different files. | ||
|
||
- Full journaling support (currently journal replaying is supported) over JBD. | ||
* - acl | ||
- Support POSIX ACLs (Access Control Lists). Effective if supported by | ||
Kernel. Not to be confused with NTFS ACLs. The option specified as acl | ||
enables support for POSIX ACLs. | ||
|
||
Todo list | ||
========= | ||
- Full journaling support over JBD. Currently journal replaying is supported | ||
which is not necessarily as effectice as JBD would be. | ||
|
||
References | ||
========== | ||
https://www.paragon-software.com/home/ntfs-linux-professional/ | ||
- Commercial version of the NTFS driver for Linux. | ||
- Commercial version of the NTFS driver for Linux. | ||
https://www.paragon-software.com/home/ntfs-linux-professional/ | ||
|
||
[email protected] | ||
- Direct e-mail address for feedback and requests on the NTFS3 implementation. | ||
- Direct e-mail address for feedback and requests on the NTFS3 implementation. | ||
[email protected] |
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
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 |
---|---|---|
|
@@ -7349,10 +7349,11 @@ F: include/uapi/linux/fpga-dfl.h | |
|
||
FPGA MANAGER FRAMEWORK | ||
M: Moritz Fischer <[email protected]> | ||
M: Wu Hao <[email protected]> | ||
M: Xu Yilun <[email protected]> | ||
R: Tom Rix <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
W: http://www.rocketboards.org | ||
Q: http://patchwork.kernel.org/project/linux-fpga/list/ | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git | ||
F: Documentation/devicetree/bindings/fpga/ | ||
|
@@ -10285,7 +10286,6 @@ KERNEL VIRTUAL MACHINE for s390 (KVM/s390) | |
M: Christian Borntraeger <[email protected]> | ||
M: Janosch Frank <[email protected]> | ||
R: David Hildenbrand <[email protected]> | ||
R: Cornelia Huck <[email protected]> | ||
R: Claudio Imbrenda <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
|
@@ -16308,6 +16308,7 @@ S390 | |
M: Heiko Carstens <[email protected]> | ||
M: Vasily Gorbik <[email protected]> | ||
M: Christian Borntraeger <[email protected]> | ||
R: Alexander Gordeev <[email protected]> | ||
L: [email protected] | ||
S: Supported | ||
W: http://www.ibm.com/developerworks/linux/linux390/ | ||
|
@@ -16386,7 +16387,6 @@ F: drivers/s390/crypto/vfio_ap_ops.c | |
F: drivers/s390/crypto/vfio_ap_private.h | ||
|
||
S390 VFIO-CCW DRIVER | ||
M: Cornelia Huck <[email protected]> | ||
M: Eric Farman <[email protected]> | ||
M: Matthew Rosato <[email protected]> | ||
R: Halil Pasic <[email protected]> | ||
|
@@ -17993,7 +17993,7 @@ F: net/switchdev/ | |
SY8106A REGULATOR DRIVER | ||
M: Icenowy Zheng <[email protected]> | ||
S: Maintained | ||
F: Documentation/devicetree/bindings/regulator/sy8106a-regulator.txt | ||
F: Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml | ||
F: drivers/regulator/sy8106a-regulator.c | ||
|
||
SYNC FILE FRAMEWORK | ||
|
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
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
Oops, something went wrong.