Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F153281111
D27507.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D27507.diff
View Options
Index: head/sys/vm/vm_kern.c
===================================================================
--- head/sys/vm/vm_kern.c
+++ head/sys/vm/vm_kern.c
@@ -264,9 +264,15 @@
{
struct vm_domainset_iter di;
vm_offset_t addr;
- int domain;
+ int domain, iflags;
- vm_domainset_iter_policy_init(&di, ds, &domain, &flags);
+ /*
+ * 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);
do {
addr = kmem_alloc_attr_domain(domain, size, flags, low, high,
memattr);
@@ -346,9 +352,15 @@
{
struct vm_domainset_iter di;
vm_offset_t addr;
- int domain;
+ int domain, iflags;
- vm_domainset_iter_policy_init(&di, ds, &domain, &flags);
+ /*
+ * 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);
do {
addr = kmem_alloc_contig_domain(domain, size, flags, low, high,
alignment, boundary, memattr);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 21, 5:36 AM (8 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31892131
Default Alt Text
D27507.diff (1 KB)
Attached To
Mode
D27507: contig allocs: Don't retry forever on M_WAITOK.
Attached
Detach File
Event Timeline
Log In to Comment