forked from raspberrypi/linux
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linux 4.8 * tag 'v4.8': (1761 commits) Linux 4.8 ARM: 8618/1: decompressor: reset ttbcr fields to use TTBR0 on ARMv7 MIPS: CM: Fix mips_cm_max_vp_width for non-MT kernels on MT systems include/linux/property.h: fix typo/compile error ocfs2: fix deadlock on mmapped page in ocfs2_write_begin_nolock() mm: workingset: fix crash in shadow node shrinker caused by replace_page_cache_page() MAINTAINERS: Switch to kernel.org email address for Javi Merino x86/entry/64: Fix context tracking state warning when load_gs_index fails x86/boot: Initialize FPU and X86_FEATURE_ALWAYS even if we don't have CPUID x86/vdso: Fix building on big endian host x86/boot: Fix another __read_cr4() case on 486 sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock sctp: change to check peer prsctp_capable when using prsctp polices sctp: remove prsctp_param from sctp_chunk sctp: move sent_count to the memory hole in sctp_chunk tg3: Avoid NULL pointer dereference in tg3_io_error_detected() x86/init: Fix cr4_init_shadow() on CR4-less machines MIPS: Fix detection of unsupported highmem with cache aliases MIPS: Malta: Fix IOCU disable switch read for MIPS64 MIPS: Fix BUILD_ROLLBACK_PROLOGUE for microMIPS ...
- Loading branch information
Showing
1,573 changed files
with
17,620 additions
and
9,350 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 |
---|---|---|
|
@@ -69,6 +69,7 @@ James Bottomley <jejb@mulgrave.(none)> | |
James Bottomley <[email protected]> | ||
James E Wilson <[email protected]> | ||
James Ketrenos <jketreno@io.(none)> | ||
Javi Merino <[email protected]> <[email protected]> | ||
<[email protected]> <[email protected]> | ||
Jean Tourrilhes <[email protected]> | ||
Jeff Garzik <[email protected]> | ||
|
@@ -88,6 +89,7 @@ Kay Sievers <[email protected]> | |
Kenneth W Chen <[email protected]> | ||
Konstantin Khlebnikov <[email protected]> <[email protected]> | ||
Koushik <[email protected]> | ||
Krzysztof Kozlowski <[email protected]> <[email protected]> | ||
Krzysztof Kozlowski <[email protected]> <[email protected]> | ||
Kuninori Morimoto <[email protected]> | ||
Leonid I Ananiev <[email protected]> | ||
|
@@ -158,6 +160,8 @@ Valdis Kletnieks <[email protected]> | |
Viresh Kumar <[email protected]> <[email protected]> | ||
Viresh Kumar <[email protected]> <[email protected]> | ||
Viresh Kumar <[email protected]> <[email protected]> | ||
Vladimir Davydov <[email protected]> <[email protected]> | ||
Vladimir Davydov <[email protected]> <[email protected]> | ||
Takashi YOSHII <[email protected]> | ||
Yusuke Goda <[email protected]> | ||
Gustavo Padovan <[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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Note: This documents additional properties of any device beyond what | ||
# is documented in Documentation/sysfs-rules.txt | ||
|
||
What: /sys/devices/*/of_path | ||
What: /sys/devices/*/of_node | ||
Date: February 2015 | ||
Contact: Device Tree mailing list <[email protected]> | ||
Description: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,12 @@ add_random (RW) | |
This file allows to turn off the disk entropy contribution. Default | ||
value of this file is '1'(on). | ||
|
||
dax (RO) | ||
-------- | ||
This file indicates whether the device supports Direct Access (DAX), | ||
used by CPU-addressable storage to bypass the pagecache. It shows '1' | ||
if true, '0' if not. | ||
|
||
discard_granularity (RO) | ||
----------------------- | ||
This shows the size of internal allocation of the device in bytes, if | ||
|
@@ -46,6 +52,12 @@ hw_sector_size (RO) | |
------------------- | ||
This is the hardware sector size of the device, in bytes. | ||
|
||
io_poll (RW) | ||
------------ | ||
When read, this file shows the total number of block IO polls and how | ||
many returned success. Writing '0' to this file will disable polling | ||
for this device. Writing any non-zero value will enable this feature. | ||
|
||
iostats (RW) | ||
------------- | ||
This file is used to control (on/off) the iostats accounting of the | ||
|
@@ -151,5 +163,11 @@ device state. This means that it might not be safe to toggle the | |
setting from "write back" to "write through", since that will also | ||
eliminate cache flushes issued by the kernel. | ||
|
||
write_same_max_bytes (RO) | ||
------------------------- | ||
This is the number of bytes the device can write in a single write-same | ||
command. A value of '0' means write-same is not supported by this | ||
device. | ||
|
||
|
||
Jens Axboe <[email protected]>, February 2009 |
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
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.