The patch titled ieee1394: fix kerneldoc of hpsb_alloc_host has been added to the -mm tree. Its filename is ieee1394-fix-kerneldoc-of-hpsb_alloc_host.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ieee1394: fix kerneldoc of hpsb_alloc_host From: Stefan Richter <stefanr@xxxxxxxxxxxxxxxxx> There was stuff between the comment and the function. Signed-off-by: Stefan Richter <stefanr@xxxxxxxxxxxxxxxxx> Cc: Ben Collins <bcollins@xxxxxxxxxx> Cc: Jody McIntyre <scjody@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ieee1394/hosts.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff -puN drivers/ieee1394/hosts.c~ieee1394-fix-kerneldoc-of-hpsb_alloc_host drivers/ieee1394/hosts.c --- a/drivers/ieee1394/hosts.c~ieee1394-fix-kerneldoc-of-hpsb_alloc_host +++ a/drivers/ieee1394/hosts.c @@ -90,6 +90,16 @@ static int alloc_hostnum_cb(struct hpsb_ return 0; } +/* + * The pending_packet_queue is special in that it's processed + * from hardirq context too (such as hpsb_bus_reset()). Hence + * split the lock class from the usual networking skb-head + * lock class by using a separate key for it: + */ +static struct lock_class_key pending_packet_queue_key; + +static DEFINE_MUTEX(host_num_alloc); + /** * hpsb_alloc_host - allocate a new host controller. * @drv: the driver that will manage the host controller @@ -105,16 +115,6 @@ static int alloc_hostnum_cb(struct hpsb_ * Return Value: a pointer to the &hpsb_host if successful, %NULL if * no memory was available. */ -static DEFINE_MUTEX(host_num_alloc); - -/* - * The pending_packet_queue is special in that it's processed - * from hardirq context too (such as hpsb_bus_reset()). Hence - * split the lock class from the usual networking skb-head - * lock class by using a separate key for it: - */ -static struct lock_class_key pending_packet_queue_key; - struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra, struct device *dev) { _ Patches currently in -mm which might be from stefanr@xxxxxxxxxxxxxxxxx are origin.patch irq-flags-consolidate-flags-for-request_irq.patch irq-flags-firewire-use-the-new-irqf_-constansts.patch lockdep-annotate-ieee1394-skb-queue-head-locking.patch ieee1394-sbp2-enable-auto-spin-up-for-maxtor-disks.patch ieee1394-fix-calculation-of-csr-expire.patch ieee1394-fix-cosmetic-problem-in-speed-probe.patch ieee1394-skip-dummy-loop-in-build_speed_map.patch ieee1394-replace-__inline__-by-inline.patch ieee1394-coding-style-and-comment-fixes-in-midlayer.patch ieee1394-update-include-directives-in-midlayer-header.patch ieee1394-remove-redundant-code-from-ieee1394_hotplugh.patch ieee1394-remove-unused-macros-hpsb_panic-and.patch ieee1394-clean-up-declarations-of-hpsb__config_rom.patch ieee1394-dv1394-sem2mutex-conversion.patch ieee1394-raw1394-remove-redundant-counting-semaphore.patch ieee1394-nodemgr-remove-unnecessary-includes.patch ieee1394-nodemgr-do-not-spawn-kernel_thread-for-sysfs.patch ieee1394-nodemgr-make-module-parameter-ignore_drivers.patch ieee1394-nodemgr-switch-to-kthread-api-replace-reset.patch ieee1394-nodemgr-convert-nodemgr_serialize-semaphore.patch ieee1394-fix-kerneldoc-of-hpsb_alloc_host.patch ieee1394-shrink-tlabel-pools-remove-tpool-semaphores.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html