Skip to content

Commit 40dde7e

Browse files
author
Michal Simek
committed
Merge tag 'v3.15' into master-next
- Fix xilinx-dma.c Rename vb2_queue.timestamp field as timestamp_flags Signed-off-by: Radhey Shyam Pandey <[email protected]> - Test RPMSG drivers - Sync drivers from mainline Signed-off-by: Michal Simek <[email protected]>
2 parents d4d1c6b + 1860e37 commit 40dde7e

File tree

10,827 files changed

+621983
-264228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,827 files changed

+621983
-264228
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ Sachin P Sant <[email protected]>
9999
Sam Ravnborg <[email protected]>
100100
Sascha Hauer <[email protected]>
101101
S.Çağlar Onur <[email protected]>
102+
102103
Simon Kelley <[email protected]>
103104
Stéphane Witzmann <[email protected]>
104105
Stephen Hemminger <[email protected]>

CREDITS

+16-2
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,13 @@ N: Michael Elizabeth Chastain
630630
631631
D: Configure, Menuconfig, xconfig
632632

633+
N: Mauro Carvalho Chehab
634+
635+
636+
D: Media subsystem (V4L/DVB) drivers and core
637+
D: EDAC drivers and EDAC 3.0 core rework
638+
S: Brazil
639+
633640
N: Raymond Chen
634641
635642
D: Author of Configure script
@@ -1229,7 +1236,7 @@ E: [email protected]
12291236
D: Kernel / timekeeping stuff
12301237
S: Carlisle, MA 01741
12311238
S: USA
1232-
1239+
12331240
N: Jan-Benedict Glaw
12341241
12351242
D: SRM environment driver (for Alpha systems)
@@ -2560,10 +2567,14 @@ S: 22 Seaview St
25602567
S: Fullarton 5063
25612568
S: South Australia
25622569

2563-
N. Wolfgang Muees
2570+
N: Wolfgang Muees
25642571
25652572
D: Auerswald USB driver
25662573

2574+
N: Paul Mundt
2575+
2576+
D: SuperH maintainer
2577+
25672578
N: Ian A. Murdock
25682579
25692580
D: Creator of Debian distribution
@@ -2707,6 +2718,9 @@ N: Greg Page
27072718
27082719
D: IPX development and support
27092720

2721+
N: Venkatesh Pallipadi (Venki)
2722+
D: x86/HPET
2723+
27102724
N: David Parsons
27112725
27122726
D: improved memory detection code.

Documentation/00-INDEX

-2
Original file line numberDiff line numberDiff line change
@@ -413,8 +413,6 @@ serial-console.txt
413413
- how to set up Linux with a serial line console as the default.
414414
sgi-ioc4.txt
415415
- description of the SGI IOC4 PCI (multi function) device.
416-
sgi-visws.txt
417-
- short blurb on the SGI Visual Workstations.
418416
sh/
419417
- directory with info on porting Linux to a new architecture.
420418
smsc_ece1099.txt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
What: /sys/firmware/opal/dump
2+
Date: Feb 2014
3+
Contact: Stewart Smith <[email protected]>
4+
Description:
5+
This directory exposes interfaces for interacting with
6+
the FSP and platform dumps through OPAL firmware interface.
7+
8+
This is only for the powerpc/powernv platform.
9+
10+
initiate_dump: When '1' is written to it,
11+
we will initiate a dump.
12+
Read this file for supported commands.
13+
14+
0xXX-0xYYYY: A directory for dump of type 0xXX and
15+
id 0xYYYY (in hex). The name of this
16+
directory should not be relied upon to
17+
be in this format, only that it's unique
18+
among all dumps. For determining the type
19+
and ID of the dump, use the id and type files.
20+
Do not rely on any particular size of dump
21+
type or dump id.
22+
23+
Each dump has the following files:
24+
id: An ASCII representation of the dump ID
25+
in hex (e.g. '0x01')
26+
type: An ASCII representation of the type of
27+
dump in the format "0x%x %s" with the ID
28+
in hex and a description of the dump type
29+
(or 'unknown').
30+
Type '0xffffffff unknown' is used when
31+
we could not get the type from firmware.
32+
e.g. '0x02 System/Platform Dump'
33+
dump: A binary file containing the dump.
34+
The size of the dump is the size of this file.
35+
acknowledge: When 'ack' is written to this, we will
36+
acknowledge that we've retrieved the
37+
dump to the service processor. It will
38+
then remove it, making the dump
39+
inaccessible.
40+
Reading this file will get a list of
41+
supported actions.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
What: /sys/firmware/opal/elog
2+
Date: Feb 2014
3+
Contact: Stewart Smith <[email protected]>
4+
Description:
5+
This directory exposes error log entries retrieved
6+
through the OPAL firmware interface.
7+
8+
Each error log is identified by a unique ID and will
9+
exist until explicitly acknowledged to firmware.
10+
11+
Each log entry has a directory in /sys/firmware/opal/elog.
12+
13+
Log entries may be purged by the service processor
14+
before retrieved by firmware or retrieved/acknowledged by
15+
Linux if there is no room for more log entries.
16+
17+
In the event that Linux has retrieved the log entries
18+
but not explicitly acknowledged them to firmware and
19+
the service processor needs more room for log entries,
20+
the only remaining copy of a log message may be in
21+
Linux.
22+
23+
Typically, a user space daemon will monitor for new
24+
entries, read them out and acknowledge them.
25+
26+
The service processor may be able to store more log
27+
entries than firmware can, so after you acknowledge
28+
an event from Linux you may instantly get another one
29+
from the queue that was generated some time in the past.
30+
31+
The raw log format is a binary format. We currently
32+
do not parse this at all in kernel, leaving it up to
33+
user space to solve the problem. In future, we may
34+
do more parsing in kernel and add more files to make
35+
it easier for simple user space processes to extract
36+
more information.
37+
38+
For each log entry (directory), there are the following
39+
files:
40+
41+
id: An ASCII representation of the ID of the
42+
error log, in hex - e.g. "0x01".
43+
44+
type: An ASCII representation of the type id and
45+
description of the type of error log.
46+
Currently just "0x00 PEL" - platform error log.
47+
In the future there may be additional types.
48+
49+
raw: A read-only binary file that can be read
50+
to get the raw log entry. These are
51+
<16kb, often just hundreds of bytes and
52+
"average" 2kb.
53+
54+
acknowledge: Writing 'ack' to this file will acknowledge
55+
the error log to firmware (and in turn
56+
the service processor, if applicable).
57+
Shortly after acknowledging it, the log
58+
entry will be removed from sysfs.
59+
Reading this file will list the supported
60+
operations (curently just acknowledge).

Documentation/ABI/testing/sysfs-block-zram

+30-9
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,36 @@ Description:
4343
The invalid_io file is read-only and specifies the number of
4444
non-page-size-aligned I/O requests issued to this device.
4545

46+
What: /sys/block/zram<id>/failed_reads
47+
Date: February 2014
48+
Contact: Sergey Senozhatsky <[email protected]>
49+
Description:
50+
The failed_reads file is read-only and specifies the number of
51+
failed reads happened on this device.
52+
53+
What: /sys/block/zram<id>/failed_writes
54+
Date: February 2014
55+
Contact: Sergey Senozhatsky <[email protected]>
56+
Description:
57+
The failed_writes file is read-only and specifies the number of
58+
failed writes happened on this device.
59+
60+
What: /sys/block/zram<id>/max_comp_streams
61+
Date: February 2014
62+
Contact: Sergey Senozhatsky <[email protected]>
63+
Description:
64+
The max_comp_streams file is read-write and specifies the
65+
number of backend's zcomp_strm compression streams (number of
66+
concurrent compress operations).
67+
68+
What: /sys/block/zram<id>/comp_algorithm
69+
Date: February 2014
70+
Contact: Sergey Senozhatsky <[email protected]>
71+
Description:
72+
The comp_algorithm file is read-write and lets to show
73+
available and selected compression algorithms, change
74+
compression algorithm selection.
75+
4676
What: /sys/block/zram<id>/notify_free
4777
Date: August 2010
4878
Contact: Nitin Gupta <[email protected]>
@@ -53,15 +83,6 @@ Description:
5383
is freed. This statistic is applicable only when this disk is
5484
being used as a swap disk.
5585

56-
What: /sys/block/zram<id>/discard
57-
Date: August 2010
58-
Contact: Nitin Gupta <[email protected]>
59-
Description:
60-
The discard file is read-only and specifies the number of
61-
discard requests received by this device. These requests
62-
provide information to block device regarding blocks which are
63-
no longer used by filesystem.
64-
6586
What: /sys/block/zram<id>/zero_pages
6687
Date: August 2010
6788
Contact: Nitin Gupta <[email protected]>

0 commit comments

Comments
 (0)