Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'block-5.16-2021-12-03' of git://git.kernel.dk/linux-block

Pull block fix from Jens Axboe:
"A single fix for repeated printk spam from loop"

* tag 'block-5.16-2021-12-03' of git://git.kernel.dk/linux-block:
loop: Use pr_warn_once() for loop_control_remove() warning

+1 -1
+1 -1
drivers/block/loop.c
··· 2103 2103 int ret; 2104 2104 2105 2105 if (idx < 0) { 2106 - pr_warn("deleting an unspecified loop device is not supported.\n"); 2106 + pr_warn_once("deleting an unspecified loop device is not supported.\n"); 2107 2107 return -EINVAL; 2108 2108 } 2109 2109