diff options
| author | Jens Axboe <axboe@kernel.dk> | 2022-01-06 22:36:04 +0300 |
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2022-01-06 22:36:04 +0300 |
| commit | d85bd8233fff000567cda4e108112bcb33478616 (patch) | |
| tree | 89489558c2066bef4b7e57130a2110bea5c21195 /include/linux | |
| parent | 050f461e28c5d13f327353d660ffad2603ce7ac1 (diff) | |
| parent | 1745e857e73a2e29379013438ee271e9aadab2e0 (diff) | |
| download | linux-d85bd8233fff000567cda4e108112bcb33478616.tar.xz | |
Merge branch 'md-next' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/song/md into for-5.17/drivers
Pull MD updates from Song:
"The major changes are:
- REQ_NOWAIT support, by Vishal Verma
- raid6 benchmark optimization, by Dirk Müller
- Fix for acct bioset, by Xiao Ni
- Clean up max_queued_requests, by Mariusz Tkaczyk
- PREEMPT_RT optimization, by Davidlohr Bueso
- Use default_groups in kobj_type, by Greg Kroah-Hartman"
* 'md-next' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/song/md:
md: use default_groups in kobj_type
md: Move alloc/free acct bioset in to personality
lib/raid6: Use strict priority ranking for pq gen() benchmarking
lib/raid6: skip benchmark of non-chosen xor_syndrome functions
md: fix spelling of "its"
md: raid456 add nowait support
md: raid10 add nowait support
md: raid1 add nowait support
md: add support for REQ_NOWAIT
md: drop queue limitation for RAID1 and RAID10
md/raid5: play nice with PREEMPT_RT
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/raid/pq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/raid/pq.h b/include/linux/raid/pq.h index 154e954b711d..d6e5a1feb947 100644 --- a/include/linux/raid/pq.h +++ b/include/linux/raid/pq.h @@ -81,7 +81,7 @@ struct raid6_calls { void (*xor_syndrome)(int, int, int, size_t, void **); int (*valid)(void); /* Returns 1 if this routine set is usable */ const char *name; /* Name of this routine set */ - int prefer; /* Has special performance attribute */ + int priority; /* Relative priority ranking if non-zero */ }; /* Selected algorithm */ |
