https://github.com/torvalds/linux
Revision b470ebc9e0e57f53d1db9c49b8a3de4086babd05 authored by Thomas Gleixner on 14 March 2021, 15:34:35 UTC, committed by Thomas Gleixner on 14 March 2021, 15:34:35 UTC
Pull irqchip fixes from Marc Zyngier:

  - More compatible strings for the Ingenic irqchip (introducing the
    JZ4760B SoC)
  - Select GENERIC_IRQ_MULTI_HANDLER on the ARM ep93xx platform
  - Drop all GENERIC_IRQ_MULTI_HANDLER selections from the irqchip
    Kconfig, now relying on the architecture to get it right
  - Drop the debugfs_file field from struct irq_domain, now that
    debugfs can track things on its own
2 parent s 4c7bcb5 + 5fbecd2
Raw File
Tip revision: b470ebc9e0e57f53d1db9c49b8a3de4086babd05 authored by Thomas Gleixner on 14 March 2021, 15:34:35 UTC
Merge tag 'irqchip-fixes-5.12-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent
Tip revision: b470ebc
blk-mq-debugfs-zoned.c
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2017 Western Digital Corporation or its affiliates.
 */

#include <linux/blkdev.h>
#include "blk-mq-debugfs.h"

int queue_zone_wlock_show(void *data, struct seq_file *m)
{
	struct request_queue *q = data;
	unsigned int i;

	if (!q->seq_zones_wlock)
		return 0;

	for (i = 0; i < q->nr_zones; i++)
		if (test_bit(i, q->seq_zones_wlock))
			seq_printf(m, "%u\n", i);

	return 0;
}
back to top