All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/28] staging: most: bug-fixes and clean-up
@ 2015-11-18 12:43 Christian Gromm
  2015-11-18 12:43 ` [PATCH 01/28] staging: most: remove unnecessary keep_mbo variable Christian Gromm
                   ` (27 more replies)
  0 siblings, 28 replies; 35+ messages in thread
From: Christian Gromm @ 2015-11-18 12:43 UTC (permalink / raw)
  To: gregkh; +Cc: Christian Gromm, driverdev-devel

This patchset is needed to have open issues of the MOST driver fixed
and the code cleaned up.

Christian Gromm (28):
  staging: most: remove unnecessary keep_mbo variable
  staging: most: rename variables
  staging: most: simplify expression
  staging: most: unify types
  staging: most: use min_t
  staging: most: fix mbo leak
  staging: most: fix tracking of MBO offset
  staging: most: use readl and writel functions
  staging: most: remove function destroy_most_c_obj
  staging: most: add missing call to ida_simple_remove
  staging: most: move call to disconnect_channel callback
  staging: most: move initialization of pointer
  staging: most: move mutex
  staging: most: move channel disconnect to function
    most_deregister_interface
  staging: most: remove tainted flag
  staging: most: remove reference counter
  staging: most: remove code to destroy channel
  staging: most: remove redundant mutexes
  staging: most: remove redundant call to wake_up_interruptible
  staging: most: encapsulate shared code
  staging: most: fix retrieval of buffer availability
  staging: most: rename variable channel
  staging: most: fix race conditions
  staging: most: change type of access_ref
  staging: most: remove stacked_mbo
  staging: most: rearrange function aim_write
  staging: most: add statistics for dropped packets
  staging: most: remove 2nd forward declaration of struct most_aim

 drivers/staging/most/aim-cdev/cdev.c          |  362 ++++++++++++-------------
 drivers/staging/most/aim-network/networking.c |   11 +-
 drivers/staging/most/hdm-dim2/dim2_hdm.c      |    4 +-
 drivers/staging/most/mostcore/core.c          |  125 ++-------
 drivers/staging/most/mostcore/mostcore.h      |    3 +-
 5 files changed, 218 insertions(+), 287 deletions(-)

-- 
1.7.9.5

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

^ permalink raw reply	[flat|nested] 35+ messages in thread
* [PATCH 00/28] staging: most: bug-fixes and clean-up
@ 2015-12-22  9:52 Christian Gromm
  2015-12-22  9:53 ` [PATCH 23/28] staging: most: fix race conditions Christian Gromm
  0 siblings, 1 reply; 35+ messages in thread
From: Christian Gromm @ 2015-12-22  9:52 UTC (permalink / raw)
  To: gregkh; +Cc: Christian Gromm, driverdev-devel

This patchset is needed to have open issues of the MOST driver fixed
and the code cleaned up.

Christian Gromm (28):
  staging: most: remove unnecessary keep_mbo variable
  staging: most: rename variables
  staging: most: simplify expression
  staging: most: unify types
  staging: most: use min_t
  staging: most: fix mbo leak
  staging: most: fix tracking of MBO offset
  staging: most: use readl and writel functions
  staging: most: remove function destroy_most_c_obj
  staging: most: add missing call to ida_simple_remove
  staging: most: move call to disconnect_channel callback
  staging: most: move initialization of pointer
  staging: most: move mutex
  staging: most: move channel disconnect to function
    most_deregister_interface
  staging: most: remove tainted flag
  staging: most: remove reference counter
  staging: most: remove code to destroy channel
  staging: most: remove redundant mutexes
  staging: most: remove redundant call to wake_up_interruptible
  staging: most: encapsulate shared code
  staging: most: fix retrieval of buffer availability
  staging: most: rename variable channel
  staging: most: fix race conditions
  staging: most: change type of access_ref
  staging: most: remove stacked_mbo
  staging: most: rearrange function aim_write
  staging: most: add statistics for dropped packets
  staging: most: remove 2nd forward declaration of struct most_aim

 drivers/staging/most/aim-cdev/cdev.c          |  362 ++++++++++++-------------
 drivers/staging/most/aim-network/networking.c |   11 +-
 drivers/staging/most/hdm-dim2/dim2_hdm.c      |    4 +-
 drivers/staging/most/mostcore/core.c          |  125 ++-------
 drivers/staging/most/mostcore/mostcore.h      |    3 +-
 5 files changed, 218 insertions(+), 287 deletions(-)

-- 
1.7.9.5

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2015-12-22  9:54 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-18 12:43 [PATCH 00/28] staging: most: bug-fixes and clean-up Christian Gromm
2015-11-18 12:43 ` [PATCH 01/28] staging: most: remove unnecessary keep_mbo variable Christian Gromm
2015-11-18 12:43 ` [PATCH 02/28] staging: most: rename variables Christian Gromm
2015-11-18 12:43 ` [PATCH 03/28] staging: most: simplify expression Christian Gromm
2015-11-18 12:43 ` [PATCH 04/28] staging: most: unify types Christian Gromm
2015-11-18 12:43 ` [PATCH 05/28] staging: most: use min_t Christian Gromm
2015-11-18 12:43 ` [PATCH 06/28] staging: most: fix mbo leak Christian Gromm
2015-11-19  5:11   ` Sudip Mukherjee
2015-11-19  9:42     ` Christian Gromm
2015-11-18 12:43 ` [PATCH 07/28] staging: most: fix tracking of MBO offset Christian Gromm
2015-11-18 12:43 ` [PATCH 08/28] staging: most: use readl and writel functions Christian Gromm
2015-11-18 12:43 ` [PATCH 09/28] staging: most: remove function destroy_most_c_obj Christian Gromm
2015-11-18 12:43 ` [PATCH 10/28] staging: most: add missing call to ida_simple_remove Christian Gromm
2015-11-18 12:43 ` [PATCH 11/28] staging: most: move call to disconnect_channel callback Christian Gromm
2015-11-18 12:43 ` [PATCH 12/28] staging: most: move initialization of pointer Christian Gromm
2015-11-18 13:16   ` Dan Carpenter
2015-11-18 12:43 ` [PATCH 13/28] staging: most: move mutex Christian Gromm
2015-11-18 12:43 ` [PATCH 14/28] staging: most: move channel disconnect to function most_deregister_interface Christian Gromm
2015-11-18 12:43 ` [PATCH 15/28] staging: most: remove tainted flag Christian Gromm
2015-11-18 12:43 ` [PATCH 16/28] staging: most: remove reference counter Christian Gromm
2015-11-18 12:43 ` [PATCH 17/28] staging: most: remove code to destroy channel Christian Gromm
2015-11-18 12:43 ` [PATCH 18/28] staging: most: remove redundant mutexes Christian Gromm
2015-11-18 12:43 ` [PATCH 19/28] staging: most: remove redundant call to wake_up_interruptible Christian Gromm
2015-11-18 12:43 ` [PATCH 20/28] staging: most: encapsulate shared code Christian Gromm
2015-11-18 12:43 ` [PATCH 21/28] staging: most: fix retrieval of buffer availability Christian Gromm
2015-11-18 12:43 ` [PATCH 22/28] staging: most: rename variable channel Christian Gromm
2015-11-18 12:43 ` [PATCH 23/28] staging: most: fix race conditions Christian Gromm
2015-11-18 12:43 ` [PATCH 24/28] staging: most: change type of access_ref Christian Gromm
2015-11-18 12:43 ` [PATCH 25/28] staging: most: remove stacked_mbo Christian Gromm
2015-11-18 12:43 ` [PATCH 26/28] staging: most: rearrange function aim_write Christian Gromm
2015-11-19  7:48   ` Dan Carpenter
2015-11-18 12:43 ` [PATCH 27/28] staging: most: add statistics for dropped packets Christian Gromm
2015-11-18 13:28   ` Dan Carpenter
2015-11-18 12:43 ` [PATCH 28/28] staging: most: remove 2nd forward declaration of struct most_aim Christian Gromm
2015-12-22  9:52 [PATCH 00/28] staging: most: bug-fixes and clean-up Christian Gromm
2015-12-22  9:53 ` [PATCH 23/28] staging: most: fix race conditions Christian Gromm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.