Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 186e54cb authored by Ingo Molnar's avatar Ingo Molnar
Browse files

Merge branch 'linus' into x86/urgent



Merge reason: Needed for include file dependencies.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parents 99dd5497 4bde23f8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -104,6 +104,8 @@ cpuidle/
	- info on CPU_IDLE, CPU idle state management subsystem.
cputopology.txt
	- documentation on how CPU topology info is exported via sysfs.
crc32.txt
	- brief tutorial on CRC computation
cris/
	- directory with info about Linux on CRIS architecture.
crypto/
+25 −0
Original line number Diff line number Diff line
What:		/sys/block/dm-<num>/dm/name
Date:		January 2009
KernelVersion:	2.6.29
Contact:	dm-devel@redhat.com
Description:	Device-mapper device name.
		Read-only string containing mapped device name.
Users:		util-linux, device-mapper udev rules

What:		/sys/block/dm-<num>/dm/uuid
Date:		January 2009
KernelVersion:	2.6.29
Contact:	dm-devel@redhat.com
Description:	Device-mapper device UUID.
		Read-only string containing DM-UUID or empty string
		if DM-UUID is not set.
Users:		util-linux, device-mapper udev rules

What:		/sys/block/dm-<num>/dm/suspended
Date:		June 2009
KernelVersion:	2.6.31
Contact:	dm-devel@redhat.com
Description:	Device-mapper device suspend state.
		Contains the value 1 while the device is suspended.
		Otherwise it contains 0. Read-only attribute.
Users:		util-linux, device-mapper udev rules
+75 −0
Original line number Diff line number Diff line
What:		/sys/bus/rpmsg/devices/.../name
Date:		June 2011
KernelVersion:	3.3
Contact:	Ohad Ben-Cohen <ohad@wizery.com>
Description:
		Every rpmsg device is a communication channel with a remote
		processor. Channels are identified with a (textual) name,
		which is maximum 32 bytes long (defined as RPMSG_NAME_SIZE in
		rpmsg.h).

		This sysfs entry contains the name of this channel.

What:		/sys/bus/rpmsg/devices/.../src
Date:		June 2011
KernelVersion:	3.3
Contact:	Ohad Ben-Cohen <ohad@wizery.com>
Description:
		Every rpmsg device is a communication channel with a remote
		processor. Channels have a local ("source") rpmsg address,
		and remote ("destination") rpmsg address. When an entity
		starts listening on one end of a channel, it assigns it with
		a unique rpmsg address (a 32 bits integer). This way when
		inbound messages arrive to this address, the rpmsg core
		dispatches them to the listening entity (a kernel driver).

		This sysfs entry contains the src (local) rpmsg address
		of this channel. If it contains 0xffffffff, then an address
		wasn't assigned (can happen if no driver exists for this
		channel).

What:		/sys/bus/rpmsg/devices/.../dst
Date:		June 2011
KernelVersion:	3.3
Contact:	Ohad Ben-Cohen <ohad@wizery.com>
Description:
		Every rpmsg device is a communication channel with a remote
		processor. Channels have a local ("source") rpmsg address,
		and remote ("destination") rpmsg address. When an entity
		starts listening on one end of a channel, it assigns it with
		a unique rpmsg address (a 32 bits integer). This way when
		inbound messages arrive to this address, the rpmsg core
		dispatches them to the listening entity.

		This sysfs entry contains the dst (remote) rpmsg address
		of this channel. If it contains 0xffffffff, then an address
		wasn't assigned (can happen if the kernel driver that
		is attached to this channel is exposing a service to the
		remote processor. This make it a local rpmsg server,
		and it is listening for inbound messages that may be sent
		from any remote rpmsg client; it is not bound to a single
		remote entity).

What:		/sys/bus/rpmsg/devices/.../announce
Date:		June 2011
KernelVersion:	3.3
Contact:	Ohad Ben-Cohen <ohad@wizery.com>
Description:
		Every rpmsg device is a communication channel with a remote
		processor. Channels are identified by a textual name (see
		/sys/bus/rpmsg/devices/.../name above) and have a local
		("source") rpmsg address, and remote ("destination") rpmsg
		address.

		A channel is first created when an entity, whether local
		or remote, starts listening on it for messages (and is thus
		called an rpmsg server).

		When that happens, a "name service" announcement is sent
		to the other processor, in order to let it know about the
		creation of the channel (this way remote clients know they
		can start sending messages).

		This sysfs entry tells us whether the channel is a local
		server channel that is announced (values are either
		true or false).
+18 −0
Original line number Diff line number Diff line
@@ -17,3 +17,21 @@ Description: Some Samsung laptops have different "performance levels"
		Specifically, not all support the "overclock" option,
		and it's still unknown if this value even changes
		anything, other than making the user feel a bit better.

What:		/sys/devices/platform/samsung/battery_life_extender
Date:		December 1, 2011
KernelVersion:	3.3
Contact:	Corentin Chary <corentin.chary@gmail.com>
Description:	Max battery charge level can be modified, battery cycle
		life can be extended by reducing the max battery charge
		level.
		0 means normal battery mode (100% charge)
		1 means battery life extender mode (80% charge)

What:		/sys/devices/platform/samsung/usb_charge
Date:		December 1, 2011
KernelVersion:	3.3
Contact:	Corentin Chary <corentin.chary@gmail.com>
Description:	Use your USB ports to charge devices, even
		when your laptop is powered off.
		1 means enabled, 0 means disabled.
+0 −11
Original line number Diff line number Diff line
What:		/sys/kernel/mm/cleancache/
Date:		April 2011
Contact:	Dan Magenheimer <dan.magenheimer@oracle.com>
Description:
		/sys/kernel/mm/cleancache/ contains a number of files which
		record a count of various cleancache operations
		(sum across all filesystems):
			succ_gets
			failed_gets
			puts
			flushes
Loading