forked from torvalds/linux
-
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 'driver-core-next' of git://git.kernel.org/pub/scm/linux…
…/kernel/git/gregkh/driver-core * 'driver-core-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (38 commits) mm: memory hotplug: Check if pages are correctly reserved on a per-section basis Revert "memory hotplug: Correct page reservation checking" Update email address for stable patch submission dynamic_debug: fix undefined reference to `__netdev_printk' dynamic_debug: use a single printk() to emit messages dynamic_debug: remove num_enabled accounting dynamic_debug: consolidate repetitive struct _ddebug descriptor definitions uio: Support physical addresses >32 bits on 32-bit systems sysfs: add unsigned long cast to prevent compile warning drivers: base: print rejected matches with DEBUG_DRIVER memory hotplug: Correct page reservation checking memory hotplug: Refuse to add unaligned memory regions remove the messy code file Documentation/zh_CN/SubmitChecklist ARM: mxc: convert device creation to use platform_device_register_full new helper to create platform devices with dma mask docs/driver-model: Update device class docs docs/driver-model: Document device.groups kobj_uevent: Ignore if some listeners cannot handle message dynamic_debug: make netif_dbg() call __netdev_printk() dynamic_debug: make netdev_dbg() call __netdev_printk() ...
- Loading branch information
Showing
29 changed files
with
527 additions
and
432 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ sysfs - _The_ filesystem for exporting kernel objects. | |
Patrick Mochel <[email protected]> | ||
Mike Murphy <[email protected]> | ||
|
||
Revised: 15 July 2010 | ||
Revised: 16 August 2011 | ||
Original: 10 January 2003 | ||
|
||
|
||
|
@@ -370,3 +370,11 @@ int driver_create_file(struct device_driver *, const struct driver_attribute *); | |
void driver_remove_file(struct device_driver *, const struct driver_attribute *); | ||
|
||
|
||
Documentation | ||
~~~~~~~~~~~~~ | ||
|
||
The sysfs directory structure and the attributes in each directory define an | ||
ABI between the kernel and user space. As for any ABI, it is important that | ||
this ABI is stable and properly documented. All new sysfs attributes must be | ||
documented in Documentation/ABI. See also Documentation/ABI/README for more | ||
information. |
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 |
---|---|---|
|
@@ -24,21 +24,21 @@ Rules on what kind of patches are accepted, and which ones are not, into the | |
Procedure for submitting patches to the -stable tree: | ||
|
||
- Send the patch, after verifying that it follows the above rules, to | ||
[email protected]. You must note the upstream commit ID in the changelog | ||
of your submission. | ||
stable@vger.kernel.org. You must note the upstream commit ID in the | ||
changelog of your submission. | ||
- To have the patch automatically included in the stable tree, add the tag | ||
Cc: [email protected] | ||
Cc: stable@vger.kernel.org | ||
in the sign-off area. Once the patch is merged it will be applied to | ||
the stable tree without anything else needing to be done by the author | ||
or subsystem maintainer. | ||
- If the patch requires other patches as prerequisites which can be | ||
cherry-picked than this can be specified in the following format in | ||
the sign-off area: | ||
|
||
Cc: <[email protected]> # .32.x: a1f84a3: sched: Check for idle | ||
Cc: <[email protected]> # .32.x: 1b9508f: sched: Rate-limit newidle | ||
Cc: <[email protected]> # .32.x: fd21073: sched: Fix affinity logic | ||
Cc: <[email protected]> # .32.x | ||
Cc: <stable@vger.kernel.org> # .32.x: a1f84a3: sched: Check for idle | ||
Cc: <stable@vger.kernel.org> # .32.x: 1b9508f: sched: Rate-limit newidle | ||
Cc: <stable@vger.kernel.org> # .32.x: fd21073: sched: Fix affinity logic | ||
Cc: <stable@vger.kernel.org> # .32.x | ||
Signed-off-by: Ingo Molnar <[email protected]> | ||
|
||
The tag sequence has the meaning of: | ||
|
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 |
---|---|---|
|
@@ -2294,6 +2294,12 @@ L: [email protected] | |
S: Maintained | ||
F: drivers/net/wan/dscc4.c | ||
|
||
DYNAMIC DEBUG | ||
M: Jason Baron <[email protected]> | ||
S: Maintained | ||
F: lib/dynamic_debug.c | ||
F: include/linux/dynamic_debug.h | ||
|
||
DZ DECSTATION DZ11 SERIAL DRIVER | ||
M: "Maciej W. Rozycki" <[email protected]> | ||
S: Maintained | ||
|
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
Oops, something went wrong.