-
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.
yaml --- r: 186436 b: refs/heads/master c: 87c7ae0 h: refs/heads/master v: v3
- Loading branch information
Linus Torvalds
committed
Mar 6, 2010
1 parent
51fc596
commit 23f5f38
Showing
545 changed files
with
20,205 additions
and
11,552 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f070304094edb8d516423e79edd27c97ec2020b0 | ||
refs/heads/master: 87c7ae06cc50bcbcdcc60d64a959ca0b9b71f892 |
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ modules.builtin | |
# | ||
tags | ||
TAGS | ||
linux | ||
vmlinux | ||
vmlinuz | ||
System.map | ||
|
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,7 @@ | ||
What: /sys/devices/system/node/nodeX | ||
Date: October 2002 | ||
Contact: Linux Memory Management list <linux-mm@kvack.org> | ||
Description: | ||
When CONFIG_NUMA is enabled, this is a directory containing | ||
information on node X such as what CPUs are local to the | ||
node. |
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,38 @@ | ||
The lkdtm module provides an interface to crash or injure the kernel at | ||
predefined crashpoints to evaluate the reliability of crash dumps obtained | ||
using different dumping solutions. The module uses KPROBEs to instrument | ||
crashing points, but can also crash the kernel directly without KRPOBE | ||
support. | ||
|
||
|
||
You can provide the way either through module arguments when inserting | ||
the module, or through a debugfs interface. | ||
|
||
Usage: insmod lkdtm.ko [recur_count={>0}] cpoint_name=<> cpoint_type=<> | ||
[cpoint_count={>0}] | ||
|
||
recur_count : Recursion level for the stack overflow test. Default is 10. | ||
|
||
cpoint_name : Crash point where the kernel is to be crashed. It can be | ||
one of INT_HARDWARE_ENTRY, INT_HW_IRQ_EN, INT_TASKLET_ENTRY, | ||
FS_DEVRW, MEM_SWAPOUT, TIMERADD, SCSI_DISPATCH_CMD, | ||
IDE_CORE_CP, DIRECT | ||
|
||
cpoint_type : Indicates the action to be taken on hitting the crash point. | ||
It can be one of PANIC, BUG, EXCEPTION, LOOP, OVERFLOW, | ||
CORRUPT_STACK, UNALIGNED_LOAD_STORE_WRITE, OVERWRITE_ALLOCATION, | ||
WRITE_AFTER_FREE, | ||
|
||
cpoint_count : Indicates the number of times the crash point is to be hit | ||
to trigger an action. The default is 10. | ||
|
||
You can also induce failures by mounting debugfs and writing the type to | ||
<mountpoint>/provoke-crash/<crashpoint>. E.g., | ||
|
||
mount -t debugfs debugfs /mnt | ||
echo EXCEPTION > /mnt/provoke-crash/INT_HARDWARE_ENTRY | ||
|
||
|
||
A special file is `DIRECT' which will induce the crash directly without | ||
KPROBE instrumentation. This mode is the only one available when the module | ||
is built on a kernel without KPROBEs support. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Kernel driver adt7411 | ||
===================== | ||
|
||
Supported chips: | ||
* Analog Devices ADT7411 | ||
Prefix: 'adt7411' | ||
Addresses scanned: 0x48, 0x4a, 0x4b | ||
Datasheet: Publicly available at the Analog Devices website | ||
|
||
Author: Wolfram Sang (based on adt7470 by Darrick J. Wong) | ||
|
||
Description | ||
----------- | ||
|
||
This driver implements support for the Analog Devices ADT7411 chip. There may | ||
be other chips that implement this interface. | ||
|
||
The ADT7411 can use an I2C/SMBus compatible 2-wire interface or an | ||
SPI-compatible 4-wire interface. It provides a 10-bit analog to digital | ||
converter which measures 1 temperature, vdd and 8 input voltages. It has an | ||
internal temperature sensor, but an external one can also be connected (one | ||
loses 2 inputs then). There are high- and low-limit registers for all inputs. | ||
|
||
Check the datasheet for details. | ||
|
||
sysfs-Interface | ||
--------------- | ||
|
||
in0_input - vdd voltage input | ||
in[1-8]_input - analog 1-8 input | ||
temp1_input - temperature input | ||
|
||
Besides standard interfaces, this driver adds (0 = off, 1 = on): | ||
|
||
adc_ref_vdd - Use vdd as reference instead of 2.25 V | ||
fast_sampling - Sample at 22.5 kHz instead of 1.4 kHz, but drop filters | ||
no_average - Turn off averaging over 16 samples | ||
|
||
Notes | ||
----- | ||
|
||
SPI, external temperature sensor and limit registers are not supported yet. |
Oops, something went wrong.