public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] ieee1394: misc updates
@ 2006-07-02 22:53 Stefan Richter
  2006-07-02 22:54 ` [PATCH 01/19] ieee1394: sbp2: enable auto spin-up for Maxtor disks Stefan Richter
                   ` (19 more replies)
  0 siblings, 20 replies; 22+ messages in thread
From: Stefan Richter @ 2006-07-02 22:53 UTC (permalink / raw)
  To: Ben Collins; +Cc: linux1394-devel, linux-kernel

Hi Ben,

here are a few new, updated, or resent patches, most of them janitorial.
I created them against 2.6.17-git18 but tested on 2.6.16.x. If they are
OK with you, please apply them to your 1394 tree (after you resynced from
Linus) for Andrew to pull eventually.

small fixes
-----------
01/19 (old) ieee1394: sbp2: enable auto spin-up for Maxtor disks
02/19 (old) ieee1394: fix calculation of csr->expire
03/19 (new) ieee1394: fix cosmetic problem in speed probe

cleanups
--------
05/19 (new) ieee1394: replace __inline__ by inline
06/19 (new) ieee1394: coding style and comment fixes in midlayer header files
07/19 (new) ieee1394: update #include directives in midlayer header files
08/19 (new) ieee1394: remove redundant code from ieee1394_hotplug.h
09/19 (new) ieee1394: remove unused macros HPSB_PANIC and HPSB_TRACE
10/19 (new) ieee1394: clean up declarations of hpsb_*_config_rom

API conversions and related cleanups
------------------------------------
11/19 (old) ieee1394: dv1394: sem2mutex conversion
12/19 (upd) ieee1394: raw1394: remove redundant counting semaphore
13/19 (old) ieee1394: nodemgr: remove unnecessary includes
14/19 (old) ieee1394: nodemgr: do not spawn kernel_thread for sysfs rescan
15/19 (old) ieee1394: nodemgr: make module parameter ignore_drivers writable
16/19 (upd) ieee1394: nodemgr: switch to kthread api, replace reset semaphore
17/19 (old) ieee1394: nodemgr: convert nodemgr_serialize semaphore to mutex
18/19 (new) ieee1394: fix kerneldoc of hpsb_alloc_host

API conversion, struct hpsb_host size reduction
-----------------------------------------------
19/19 (upd) ieee1394: shrink tlabel pools, remove tpool semaphores

Patch 11/19 is trivial but untested except for loading the driver,
writing into its character device, and unloading it.

Patch 16/19 was condensed from two previously posted patches.  I merged
them because the first stage of the two used kthread_stop_sem() which
may vanish from the kernel API at some point.

Patch 19/19 replaces four previously posted patches.  They all touched
the same code regions, so there was not much point to keep them
separate.  Among other , this updated version incorporates your
suggestion to make tlabel related sysfs attributes only conditionally
available as debug code.

The patches are mostly stand-alone WRT what they do; however they apply
most easily in above order.  After this patch series, the 1394 drivers
are completely converted to the kthread API, and all semaphores are
removed except for some last few RW semaphores (hl_drivers_sem in
highlevel.c, driver core's subsys RW semaphores in nodemgr.c).

 drivers/ieee1394/csr.c                   |   31 --
 drivers/ieee1394/csr.h                   |  107 ++++---
 drivers/ieee1394/dma.c                   |    7
 drivers/ieee1394/dma.h                   |   88 ++++--
 drivers/ieee1394/dv1394-private.h        |    6
 drivers/ieee1394/dv1394.c                |   43 +--
 drivers/ieee1394/eth1394.c               |   11
 drivers/ieee1394/highlevel.h             |  207 +++++++--------
 drivers/ieee1394/hosts.c                 |    7 -
 drivers/ieee1394/hosts.h                 |   51 +--
 drivers/ieee1394/ieee1394-ioctl.h        |    9
 drivers/ieee1394/ieee1394.h              |  314 +++++++++++------------
 drivers/ieee1394/ieee1394_core.c         |    4
 drivers/ieee1394/ieee1394_core.h         |   27 +
 drivers/ieee1394/ieee1394_hotplug.h      |   30 --
 drivers/ieee1394/ieee1394_transactions.c |  114 ++++----
 drivers/ieee1394/ieee1394_transactions.h |   41 +--
 drivers/ieee1394/ieee1394_types.h        |   66 +---
 drivers/ieee1394/iso.c                   |    5
 drivers/ieee1394/iso.h                   |   87 +++---
 drivers/ieee1394/nodemgr.c               |  216 ++++++---------
 drivers/ieee1394/nodemgr.h               |   27 -
 drivers/ieee1394/ohci1394.c              |    5
 drivers/ieee1394/raw1394-private.h       |    3
 drivers/ieee1394/raw1394.c               |  102 ++++---
 drivers/ieee1394/sbp2.c                  |    7
 drivers/ieee1394/video1394.c             |   12
 27 files changed, 811 insertions(+), 816 deletions(-)

-- 
Stefan Richter
-=====-=-==- -=== ---==
http://arcgraph.de/sr/


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

end of thread, other threads:[~2006-07-03 16:05 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-02 22:53 [PATCH 00/19] ieee1394: misc updates Stefan Richter
2006-07-02 22:54 ` [PATCH 01/19] ieee1394: sbp2: enable auto spin-up for Maxtor disks Stefan Richter
2006-07-02 22:56 ` [PATCH 02/19] ieee1394: fix calculation of csr->expire Stefan Richter
2006-07-02 22:58 ` [PATCH 03/19] ieee1394: fix cosmetic problem in speed probe Stefan Richter
2006-07-02 22:59 ` [PATCH 04/19] ieee1394: skip dummy loop in build_speed_map Stefan Richter
2006-07-02 23:00 ` [PATCH 05/19] ieee1394: replace __inline__ by inline Stefan Richter
2006-07-02 23:02 ` [PATCH 06/19] ieee1394: coding style and comment fixes in midlayer header files Stefan Richter
2006-07-02 23:04 ` [PATCH 07/19] ieee1394: update #include directives " Stefan Richter
2006-07-02 23:05 ` [PATCH 08/19] ieee1394: remove redundant code from ieee1394_hotplug.h Stefan Richter
2006-07-02 23:06 ` [PATCH 09/19] ieee1394: remove unused macros HPSB_PANIC and HPSB_TRACE Stefan Richter
2006-07-02 23:07 ` [PATCH 10/19] ieee1394: clean up declarations of hpsb_*_config_rom Stefan Richter
2006-07-02 23:08 ` [PATCH 11/19] ieee1394: dv1394: sem2mutex conversion Stefan Richter
2006-07-02 23:20 ` [PATCH 12/19] ieee1394: raw1394: remove redundant counting semaphore Stefan Richter
2006-07-02 23:21 ` [PATCH 13/19] ieee1394: nodemgr: remove unnecessary includes Stefan Richter
2006-07-02 23:22 ` [PATCH 14/19] ieee1394: nodemgr: do not spawn kernel_thread for sysfs rescan Stefan Richter
2006-07-02 23:23 ` [PATCH 15/19] ieee1394: nodemgr: make module parameter ignore_drivers writable Stefan Richter
2006-07-02 23:25 ` [PATCH 16/19] ieee1394: nodemgr: switch to kthread api, replace reset semaphore Stefan Richter
2006-07-02 23:26 ` [PATCH 17/19] ieee1394: nodemgr: convert nodemgr_serialize semaphore to mutex Stefan Richter
2006-07-02 23:29 ` [PATCH 18/19] ieee1394: fix kerneldoc of hpsb_alloc_host Stefan Richter
2006-07-02 23:34   ` [PATCH 18a/19 2.6.17-mm5] " Stefan Richter
2006-07-02 23:31 ` [PATCH 19/19] ieee1394: shrink tlabel pools, remove tpool semaphores Stefan Richter
2006-07-03 16:05 ` [PATCH 00/19] ieee1394: misc updates Ben Collins

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox