aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2020-12-15 19:38:16 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2020-12-15 19:38:16 +0000
commit5fee468e83efcfa33d016da2f5dea63ca3d8a15f (patch)
tree8bdf8fbe0d5a48d9e00fba57af7635bd55c4ec5f
parentcb4ff25c8a40e6811f48f6ad03a0bf882404e9ac (diff)
downloadsrc-5fee468e83efcfa33d016da2f5dea63ca3d8a15f.tar.gz
src-5fee468e83efcfa33d016da2f5dea63ca3d8a15f.zip
Revert r368523 which fixed contig allocs waiting forever.
This needs to account for empty NUMA domains or domains which do not satisfy the requested range. Discussed with: markj
Notes
Notes: svn path=/head/; revision=368673
-rw-r--r--sys/vm/vm_kern.c20
1 files changed, 4 insertions, 16 deletions
diff --git a/sys/vm/vm_kern.c b/sys/vm/vm_kern.c
index 11d025bd6037..f1704f834157 100644
--- a/sys/vm/vm_kern.c
+++ b/sys/vm/vm_kern.c
@@ -264,15 +264,9 @@ kmem_alloc_attr_domainset(struct domainset *ds, vm_size_t size, int flags,
{
struct vm_domainset_iter di;
vm_offset_t addr;
- int domain, iflags;
+ int domain;
- /*
- * Do not allow the domainset iterator to override wait flags. The
- * contiguous memory allocator defines special semantics for M_WAITOK
- * that do not match the iterator's implementation.
- */
- iflags = (flags & ~M_WAITOK) | M_NOWAIT;
- vm_domainset_iter_policy_init(&di, ds, &domain, &iflags);
+ vm_domainset_iter_policy_init(&di, ds, &domain, &flags);
do {
addr = kmem_alloc_attr_domain(domain, size, flags, low, high,
memattr);
@@ -352,15 +346,9 @@ kmem_alloc_contig_domainset(struct domainset *ds, vm_size_t size, int flags,
{
struct vm_domainset_iter di;
vm_offset_t addr;
- int domain, iflags;
+ int domain;
- /*
- * Do not allow the domainset iterator to override wait flags. The
- * contiguous memory allocator defines special semantics for M_WAITOK
- * that do not match the iterator's implementation.
- */
- iflags = (flags & ~M_WAITOK) | M_NOWAIT;
- vm_domainset_iter_policy_init(&di, ds, &domain, &iflags);
+ vm_domainset_iter_policy_init(&di, ds, &domain, &flags);
do {
addr = kmem_alloc_contig_domain(domain, size, flags, low, high,
alignment, boundary, memattr);