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 tag 'staging-4.3-rc3' of git://git.kernel.org/pub/scm/linux/ker…
…nel/git/gregkh/staging Pull staging driver fixes from Greg KH: "Here are some tiny staging driver and documentation fixes for 4.3-rc3. All of these resolve reported issues that people have found and have been in the linux-next tree for a while with no problems" * tag 'staging-4.3-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: MAINTAINERS: Update email address for Martyn Welch staging: ion: fix corruption of ion_import_dma_buf staging: dgap: Remove myself from the MAINTAINERS file staging: most: Add dependency to HAS_IOMEM staging: unisys: remove reference of visorutil staging: unisys: visornic: handle error return from device registration staging: unisys: stop device registration before visorbus registration staging: unisys: visorbus: Unregister driver on error staging: unisys: visornic: Fix receive bytes statistics staging: unisys: unregister netdev when create debugfs fails staging: fbtft: replace master->setup() with spi_setup() staging: fbtft: fix 9-bit SPI support detection staging/lustre: change Lustre URLs and mailing list staging/android: Update ION TODO per LPC discussion Staging: most: MOST and MOSTCORE should depend on HAS_DMA staging: most: fix HDM_USB dependencies and build errors
- Loading branch information
Showing
15 changed files
with
66 additions
and
47 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 |
---|---|---|
|
@@ -3401,7 +3401,6 @@ F: drivers/staging/dgnc/ | |
|
||
DIGI EPCA PCI PRODUCTS | ||
M: Lidza Louina <[email protected]> | ||
M: Mark Hounschell <[email protected]> | ||
M: Daeseok Youn <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
|
@@ -9910,8 +9909,8 @@ F: drivers/staging/media/lirc/ | |
STAGING - LUSTRE PARALLEL FILESYSTEM | ||
M: Oleg Drokin <[email protected]> | ||
M: Andreas Dilger <[email protected]> | ||
L: HPDD-discuss@lists.01.org (moderated for non-subscribers) | ||
W: http://lustre.opensfs.org/ | ||
L: lustre-devel@lists.lustre.org (moderated for non-subscribers) | ||
W: http://wiki.lustre.org/ | ||
S: Maintained | ||
F: drivers/staging/lustre | ||
|
||
|
@@ -11203,7 +11202,7 @@ F: drivers/vlynq/vlynq.c | |
F: include/linux/vlynq.h | ||
|
||
VME SUBSYSTEM | ||
M: Martyn Welch <martyn[email protected]> | ||
M: Martyn Welch <martyn@welchs.me.uk> | ||
M: Manohar Vanga <[email protected]> | ||
M: Greg Kroah-Hartman <[email protected]> | ||
L: [email protected] | ||
|
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 |
---|---|---|
|
@@ -5,5 +5,25 @@ TODO: | |
- add proper arch dependencies as needed | ||
- audit userspace interfaces to make sure they are sane | ||
|
||
|
||
ion/ | ||
- Remove ION_IOC_SYNC: Flushing for devices should be purely a kernel internal | ||
interface on top of dma-buf. flush_for_device needs to be added to dma-buf | ||
first. | ||
- Remove ION_IOC_CUSTOM: Atm used for cache flushing for cpu access in some | ||
vendor trees. Should be replaced with an ioctl on the dma-buf to expose the | ||
begin/end_cpu_access hooks to userspace. | ||
- Clarify the tricks ion plays with explicitly managing coherency behind the | ||
dma api's back (this is absolutely needed for high-perf gpu drivers): Add an | ||
explicit coherency management mode to flush_for_device to be used by drivers | ||
which want to manage caches themselves and which indicates whether cpu caches | ||
need flushing. | ||
- With those removed there's probably no use for ION_IOC_IMPORT anymore either | ||
since ion would just be the central allocator for shared buffers. | ||
- Add dt-binding to expose cma regions as ion heaps, with the rule that any | ||
such cma regions must already be used by some device for dma. I.e. ion only | ||
exposes existing cma regions and doesn't reserve unecessarily memory when | ||
booting a system which doesn't use ion. | ||
|
||
Please send patches to Greg Kroah-Hartman <[email protected]> and Cc: | ||
Arve Hjønnevåg <[email protected]> and Riley Andrews <[email protected]> |
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
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,5 +1,6 @@ | ||
menuconfig MOST | ||
tristate "MOST driver" | ||
depends on HAS_DMA | ||
select MOSTCORE | ||
default n | ||
---help--- | ||
|
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