-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'x86/amd-nb' into x86/apic-cleanups
Reason: apic cleanup series depends on x86/apic, x86/amd-nb x86/platform Conflicts: arch/x86/include/asm/io_apic.h Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
- Loading branch information
Showing
8,892 changed files
with
937,534 additions
and
491,858 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 was deleted.
Oops, something went wrong.
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,22 @@ | ||
What: /proc/<pid>/oom_adj | ||
When: August 2012 | ||
Why: /proc/<pid>/oom_adj allows userspace to influence the oom killer's | ||
badness heuristic used to determine which task to kill when the kernel | ||
is out of memory. | ||
|
||
The badness heuristic has since been rewritten since the introduction of | ||
this tunable such that its meaning is deprecated. The value was | ||
implemented as a bitshift on a score generated by the badness() | ||
function that did not have any precise units of measure. With the | ||
rewrite, the score is given as a proportion of available memory to the | ||
task allocating pages, so using a bitshift which grows the score | ||
exponentially is, thus, impossible to tune with fine granularity. | ||
|
||
A much more powerful interface, /proc/<pid>/oom_score_adj, was | ||
introduced with the oom killer rewrite that allows users to increase or | ||
decrease the badness() score linearly. This interface will replace | ||
/proc/<pid>/oom_adj. | ||
|
||
A warning will be emitted to the kernel log if an application uses this | ||
deprecated interface. After it is printed once, future warnings will be | ||
suppressed until the kernel is rebooted. |
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,14 @@ | ||
What: dv1394 (a.k.a. "OHCI-DV I/O support" for FireWire) | ||
Date: May 2010 (scheduled), finally removed in kernel v2.6.37 | ||
Contact: linux1394-devel@lists.sourceforge.net | ||
Description: | ||
/dev/dv1394/* were character device files, one for each FireWire | ||
controller and for NTSC and PAL respectively, from which DV data | ||
could be received by read() or transmitted by write(). A few | ||
ioctl()s allowed limited control. | ||
This special-purpose interface has been superseded by libraw1394 + | ||
libiec61883 which are functionally equivalent, support HDV, and | ||
transparently work on top of the newer firewire kernel drivers. | ||
|
||
Users: | ||
ffmpeg/libavformat (if configured for DV1394) |
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,15 @@ | ||
What: raw1394 (a.k.a. "Raw IEEE1394 I/O support" for FireWire) | ||
Date: May 2010 (scheduled), finally removed in kernel v2.6.37 | ||
Contact: linux1394-devel@lists.sourceforge.net | ||
Description: | ||
/dev/raw1394 was a character device file that allowed low-level | ||
access to FireWire buses. Its major drawbacks were its inability | ||
to implement sensible device security policies, and its low level | ||
of abstraction that required userspace clients do duplicate much | ||
of the kernel's ieee1394 core functionality. | ||
Replaced by /dev/fw*, i.e. the <linux/firewire-cdev.h> ABI of | ||
firewire-core. | ||
|
||
Users: | ||
libraw1394 (works with firewire-cdev too, transparent to library ABI | ||
users) |
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
What: video1394 (a.k.a. "OHCI-1394 Video support" for FireWire) | ||
Date: May 2010 (scheduled), finally removed in kernel v2.6.37 | ||
Contact: linux1394-devel@lists.sourceforge.net | ||
Description: | ||
/dev/video1394/* were character device files, one for each FireWire | ||
controller, which were used for isochronous I/O. It was added as an | ||
alternative to raw1394's isochronous I/O functionality which had | ||
performance issues in its first generation. Any video1394 user had | ||
to use raw1394 + libraw1394 too because video1394 did not provide | ||
asynchronous I/O for device discovery and configuration. | ||
Replaced by /dev/fw*, i.e. the <linux/firewire-cdev.h> ABI of | ||
firewire-core. | ||
|
||
Users: | ||
libdc1394 (works with firewire-cdev too, transparent to library ABI | ||
users) |
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,99 @@ | ||
What: /sys/block/zram<id>/disksize | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The disksize file is read-write and specifies the disk size | ||
which represents the limit on the *uncompressed* worth of data | ||
that can be stored in this disk. | ||
|
||
What: /sys/block/zram<id>/initstate | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The disksize file is read-only and shows the initialization | ||
state of the device. | ||
|
||
What: /sys/block/zram<id>/reset | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The disksize file is write-only and allows resetting the | ||
device. The reset operation frees all the memory assocaited | ||
with this device. | ||
|
||
What: /sys/block/zram<id>/num_reads | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The num_reads file is read-only and specifies the number of | ||
reads (failed or successful) done on this device. | ||
|
||
What: /sys/block/zram<id>/num_writes | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The num_writes file is read-only and specifies the number of | ||
writes (failed or successful) done on this device. | ||
|
||
What: /sys/block/zram<id>/invalid_io | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The invalid_io file is read-only and specifies the number of | ||
non-page-size-aligned I/O requests issued to this device. | ||
|
||
What: /sys/block/zram<id>/notify_free | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The notify_free file is read-only and specifies the number of | ||
swap slot free notifications received by this device. These | ||
notifications are send to a swap block device when a swap slot | ||
is freed. This statistic is applicable only when this disk is | ||
being used as a swap disk. | ||
|
||
What: /sys/block/zram<id>/discard | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The discard file is read-only and specifies the number of | ||
discard requests received by this device. These requests | ||
provide information to block device regarding blocks which are | ||
no longer used by filesystem. | ||
|
||
What: /sys/block/zram<id>/zero_pages | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The zero_pages file is read-only and specifies number of zero | ||
filled pages written to this disk. No memory is allocated for | ||
such pages. | ||
|
||
What: /sys/block/zram<id>/orig_data_size | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The orig_data_size file is read-only and specifies uncompressed | ||
size of data stored in this disk. This excludes zero-filled | ||
pages (zero_pages) since no memory is allocated for them. | ||
Unit: bytes | ||
|
||
What: /sys/block/zram<id>/compr_data_size | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The compr_data_size file is read-only and specifies compressed | ||
size of data stored in this disk. So, compression ratio can be | ||
calculated using orig_data_size and this statistic. | ||
Unit: bytes | ||
|
||
What: /sys/block/zram<id>/mem_used_total | ||
Date: August 2010 | ||
Contact: Nitin Gupta <ngupta@vflare.org> | ||
Description: | ||
The mem_used_total file is read-only and specifies the amount | ||
of memory, including allocator fragmentation and metadata | ||
overhead, allocated for this disk. So, allocator space | ||
efficiency can be calculated using compr_data_size and this | ||
statistic. | ||
Unit: bytes |
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,22 @@ | ||
What: state | ||
Date: Sep 2010 | ||
KernelVersion: 2.6.37 | ||
Contact: Vernon Mauery <vernux@us.ibm.com> | ||
Description: The state file allows a means by which to change in and | ||
out of Premium Real-Time Mode (PRTM), as well as the | ||
ability to query the current state. | ||
0 => PRTM off | ||
1 => PRTM enabled | ||
Users: The ibm-prtm userspace daemon uses this interface. | ||
|
||
|
||
What: version | ||
Date: Sep 2010 | ||
KernelVersion: 2.6.37 | ||
Contact: Vernon Mauery <vernux@us.ibm.com> | ||
Description: The version file provides a means by which to query | ||
the RTL table version that lives in the Extended | ||
BIOS Data Area (EBDA). | ||
Users: The ibm-prtm userspace daemon uses this interface. | ||
|
||
|
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,98 @@ | ||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/actual_cpi | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: It is possible to switch the cpi setting of the mouse with the | ||
press of a button. | ||
When read, this file returns the raw number of the actual cpi | ||
setting reported by the mouse. This number has to be further | ||
processed to receive the real dpi value. | ||
|
||
VALUE DPI | ||
1 400 | ||
2 800 | ||
4 1600 | ||
|
||
This file is readonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/actual_profile | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: When read, this file returns the number of the actual profile in | ||
range 0-4. | ||
This file is readonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/firmware_version | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: When read, this file returns the raw integer version number of the | ||
firmware reported by the mouse. Using the integer value eases | ||
further usage in other programs. To receive the real version | ||
number the decimal point has to be shifted 2 positions to the | ||
left. E.g. a returned value of 138 means 1.38 | ||
This file is readonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/profile_settings | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: The mouse can store 5 profiles which can be switched by the | ||
press of a button. A profile is split in settings and buttons. | ||
profile_settings holds informations like resolution, sensitivity | ||
and light effects. | ||
When written, this file lets one write the respective profile | ||
settings back to the mouse. The data has to be 13 bytes long. | ||
The mouse will reject invalid data. | ||
Which profile to write is determined by the profile number | ||
contained in the data. | ||
This file is writeonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/profile[1-5]_settings | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: The mouse can store 5 profiles which can be switched by the | ||
press of a button. A profile is split in settings and buttons. | ||
profile_settings holds informations like resolution, sensitivity | ||
and light effects. | ||
When read, these files return the respective profile settings. | ||
The returned data is 13 bytes in size. | ||
This file is readonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/profile_buttons | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: The mouse can store 5 profiles which can be switched by the | ||
press of a button. A profile is split in settings and buttons. | ||
profile_buttons holds informations about button layout. | ||
When written, this file lets one write the respective profile | ||
buttons back to the mouse. The data has to be 19 bytes long. | ||
The mouse will reject invalid data. | ||
Which profile to write is determined by the profile number | ||
contained in the data. | ||
This file is writeonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/profile[1-5]_buttons | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: The mouse can store 5 profiles which can be switched by the | ||
press of a button. A profile is split in settings and buttons. | ||
profile_buttons holds informations about button layout. | ||
When read, these files return the respective profile buttons. | ||
The returned data is 19 bytes in size. | ||
This file is readonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/startup_profile | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: The integer value of this attribute ranges from 0-4. | ||
When read, this attribute returns the number of the profile | ||
that's active when the mouse is powered on. | ||
This file is readonly. | ||
|
||
What: /sys/bus/usb/devices/<busnum>-<devnum>:<config num>.<interface num>/settings | ||
Date: August 2010 | ||
Contact: Stefan Achatz <erazor_de@users.sourceforge.net> | ||
Description: When read, this file returns the settings stored in the mouse. | ||
The size of the data is 3 bytes and holds information on the | ||
startup_profile. | ||
When written, this file lets write settings back to the mouse. | ||
The data has to be 3 bytes long. The mouse will reject invalid | ||
data. |
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,12 @@ | ||
What: /sys/module/pch_phub/drivers/.../pch_mac | ||
Date: August 2010 | ||
KernelVersion: 2.6.35 | ||
Contact: masa-korg@dsn.okisemi.com | ||
Description: Write/read GbE MAC address. | ||
|
||
What: /sys/module/pch_phub/drivers/.../pch_firmware | ||
Date: August 2010 | ||
KernelVersion: 2.6.35 | ||
Contact: masa-korg@dsn.okisemi.com | ||
Description: Write/read Option ROM data. | ||
|
Oops, something went wrong.