forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes representative of linux-3.10.0-229.el7.tar.xz
- Loading branch information
Showing
5,801 changed files
with
503,548 additions
and
201,738 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
What: tcp_dma_copybreak sysctl | ||
Date: Removed in kernel v3.13 | ||
Contact: Dan Williams <dan.j.williams@intel.com> | ||
Description: | ||
Formerly the lower limit, in bytes, of the size of socket reads | ||
that will be offloaded to a DMA copy engine. Removed due to | ||
coherency issues of the cpu potentially touching the buffers | ||
while dma is in flight. |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
What: /sys/devices/system/cpu/dscr_default | ||
Date: 13-May-2014 | ||
KernelVersion: v3.15.0 | ||
Contact: | ||
Description: Writes are equivalent to writing to | ||
/sys/devices/system/cpu/cpuN/dscr on all CPUs. | ||
Reads return the last written value or 0. | ||
This value is not a global default: it is a way to set | ||
all per-CPU defaults at the same time. | ||
Values: 64 bit unsigned integer (bit field) | ||
|
||
What: /sys/devices/system/cpu/cpu[0-9]+/dscr | ||
Date: 13-May-2014 | ||
KernelVersion: v3.15.0 | ||
Contact: | ||
Description: Default value for the Data Stream Control Register (DSCR) on | ||
a CPU. | ||
This default value is used when the kernel is executing and | ||
for any process that has not set the DSCR itself. | ||
If a process ever sets the DSCR (via direct access to the | ||
SPR) that value will be persisted for that process and used | ||
on any CPU where it executes (overriding the value described | ||
here). | ||
If set by a process it will be inherited by child processes. | ||
Values: 64 bit unsigned integer (bit field) |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
What: /sys/firmware/opal/dump | ||
Date: Feb 2014 | ||
Contact: Stewart Smith <stewart@linux.vnet.ibm.com> | ||
Description: | ||
This directory exposes interfaces for interacting with | ||
the FSP and platform dumps through OPAL firmware interface. | ||
|
||
This is only for the powerpc/powernv platform. | ||
|
||
initiate_dump: When '1' is written to it, | ||
we will initiate a dump. | ||
Read this file for supported commands. | ||
|
||
0xXX-0xYYYY: A directory for dump of type 0xXX and | ||
id 0xYYYY (in hex). The name of this | ||
directory should not be relied upon to | ||
be in this format, only that it's unique | ||
among all dumps. For determining the type | ||
and ID of the dump, use the id and type files. | ||
Do not rely on any particular size of dump | ||
type or dump id. | ||
|
||
Each dump has the following files: | ||
id: An ASCII representation of the dump ID | ||
in hex (e.g. '0x01') | ||
type: An ASCII representation of the type of | ||
dump in the format "0x%x %s" with the ID | ||
in hex and a description of the dump type | ||
(or 'unknown'). | ||
Type '0xffffffff unknown' is used when | ||
we could not get the type from firmware. | ||
e.g. '0x02 System/Platform Dump' | ||
dump: A binary file containing the dump. | ||
The size of the dump is the size of this file. | ||
acknowledge: When 'ack' is written to this, we will | ||
acknowledge that we've retrieved the | ||
dump to the service processor. It will | ||
then remove it, making the dump | ||
inaccessible. | ||
Reading this file will get a list of | ||
supported actions. |
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
What: /sys/firmware/opal/elog | ||
Date: Feb 2014 | ||
Contact: Stewart Smith <stewart@linux.vnet.ibm.com> | ||
Description: | ||
This directory exposes error log entries retrieved | ||
through the OPAL firmware interface. | ||
|
||
Each error log is identified by a unique ID and will | ||
exist until explicitly acknowledged to firmware. | ||
|
||
Each log entry has a directory in /sys/firmware/opal/elog. | ||
|
||
Log entries may be purged by the service processor | ||
before retrieved by firmware or retrieved/acknowledged by | ||
Linux if there is no room for more log entries. | ||
|
||
In the event that Linux has retrieved the log entries | ||
but not explicitly acknowledged them to firmware and | ||
the service processor needs more room for log entries, | ||
the only remaining copy of a log message may be in | ||
Linux. | ||
|
||
Typically, a user space daemon will monitor for new | ||
entries, read them out and acknowledge them. | ||
|
||
The service processor may be able to store more log | ||
entries than firmware can, so after you acknowledge | ||
an event from Linux you may instantly get another one | ||
from the queue that was generated some time in the past. | ||
|
||
The raw log format is a binary format. We currently | ||
do not parse this at all in kernel, leaving it up to | ||
user space to solve the problem. In future, we may | ||
do more parsing in kernel and add more files to make | ||
it easier for simple user space processes to extract | ||
more information. | ||
|
||
For each log entry (directory), there are the following | ||
files: | ||
|
||
id: An ASCII representation of the ID of the | ||
error log, in hex - e.g. "0x01". | ||
|
||
type: An ASCII representation of the type id and | ||
description of the type of error log. | ||
Currently just "0x00 PEL" - platform error log. | ||
In the future there may be additional types. | ||
|
||
raw: A read-only binary file that can be read | ||
to get the raw log entry. These are | ||
<16kb, often just hundreds of bytes and | ||
"average" 2kb. | ||
|
||
acknowledge: Writing 'ack' to this file will acknowledge | ||
the error log to firmware (and in turn | ||
the service processor, if applicable). | ||
Shortly after acknowledging it, the log | ||
entry will be removed from sysfs. | ||
Reading this file will list the supported | ||
operations (curently just acknowledge). |
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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/ddcb_info | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: DDCB queue dump used for debugging queueing problems. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/curr_regs | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Dump of the current error registers. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/curr_dbg_uid0 | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Internal chip state of UID0 (unit id 0). | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/curr_dbg_uid1 | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Internal chip state of UID1. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/curr_dbg_uid2 | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Internal chip state of UID2. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/prev_regs | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Dump of the error registers before the last reset of | ||
the card occured. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/prev_dbg_uid0 | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Internal chip state of UID0 before card was reset. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/prev_dbg_uid1 | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Internal chip state of UID1 before card was reset. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/prev_dbg_uid2 | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Internal chip state of UID2 before card was reset. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/info | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Comprehensive summary of bitstream version and software | ||
version. Used bitstream and bitstream clocking information. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/err_inject | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Possibility to inject error cases to ensure that the drivers | ||
error handling code works well. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/vf<0..14>_jobtimeout_msec | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Default VF timeout 250ms. Testing might require 1000ms. | ||
Using 0 will use the cards default value (whatever that is). | ||
|
||
The timeout depends on the max number of available cards | ||
in the system and the maximum allowed queue size. | ||
|
||
The driver ensures that the settings are done just before | ||
the VFs get enabled. Changing the timeouts in flight is not | ||
possible. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/jobtimer | ||
Date: Oct 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Dump job timeout register values for PF and VFs. | ||
Only available for PF. | ||
|
||
What: /sys/kernel/debug/genwqe/genwqe<n>_card/queue_working_time | ||
Date: Dec 2013 | ||
Contact: haver@linux.vnet.ibm.com | ||
Description: Dump queue working time register values for PF and VFs. | ||
Only available for PF. |
Oops, something went wrong.