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 'for-linus-20190706' of git://git.kernel.dk/linux-block

Pull block fix from Jens Axboe:
"Just a single fix for a patch from Greg KH, which reportedly break
block debugfs locations for certain setups. Trivial enough that I
think we should include it now, rather than wait and release 5.2 with
it, since it's a regression in this series"

* tag 'for-linus-20190706' of git://git.kernel.dk/linux-block:
blk-mq: fix up placement of debugfs directory of queue files

+7
+7
block/blk-mq-debugfs.c
··· 934 934 { 935 935 struct elevator_type *e = q->elevator->type; 936 936 937 + /* 938 + * If the parent directory has not been created yet, return, we will be 939 + * called again later on and the directory/files will be created then. 940 + */ 941 + if (!q->debugfs_dir) 942 + return; 943 + 937 944 if (!e->queue_debugfs_attrs) 938 945 return; 939 946