mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 19:22:47 +00:00
Fix one place which knew that B_WRITE was zero.
Fix a stylistic mistake of mine while here. Found by: Stephen Hocking <shocking@prth.pgs.com>
This commit is contained in:
parent
9d97e36cc4
commit
912e4ae9f7
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=58462
@ -847,7 +847,7 @@ swap_pager_strategy(vm_object_t object, struct buf *bp)
|
||||
* Deal with BIO_DELETE
|
||||
*/
|
||||
|
||||
if (bp->b_iocmd & BIO_DELETE) {
|
||||
if (bp->b_iocmd == BIO_DELETE) {
|
||||
/*
|
||||
* FREE PAGE(s) - destroy underlying swap that is no longer
|
||||
* needed.
|
||||
@ -1333,6 +1333,7 @@ swap_pager_putpages(object, m, count, sync, rtvals)
|
||||
bp = getpbuf(&nsw_wcount_async);
|
||||
bp->b_flags = B_ASYNC;
|
||||
}
|
||||
bp->b_iocmd = BIO_WRITE;
|
||||
bp->b_spc = NULL; /* not used, but NULL-out anyway */
|
||||
|
||||
pmap_qenter((vm_offset_t)bp->b_data, &m[i], n);
|
||||
|
Loading…
Reference in New Issue
Block a user