HomeSort by: relevance | last modified time | path
    Searched refs:PG_RELEASED (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/uvm/
uvm_anon.c 153 KASSERT((pg->flags & PG_RELEASED) == 0);
157 * If the page is busy, mark it as PG_RELEASED, so
162 pg->flags |= PG_RELEASED;
367 KASSERT((pg->flags & PG_RELEASED) != 0);
384 /* Note: extra reference is held for PG_RELEASED case. */
uvm_object.c 36 * 1. Support PG_RELEASED-using objects
127 * where PG_RELEASED flag is never set (aobj objects)
158 KASSERT(!(pgs[i]->flags & PG_RELEASED));
213 * where PG_RELEASED flag is never set
227 KASSERT(!(pg->flags & PG_RELEASED));
uvm_page.h 223 * PG_RELEASED:
249 #define PG_RELEASED 0x00000020 /* page to be freed when unbusied */
uvm_loan.c 461 KASSERT(!(pg->flags & (PG_RELEASED|PG_PAGEOUT)));
529 if ((pgpp[i]->flags & PG_RELEASED) != 0) {
676 if ((pg->flags & PG_RELEASED) != 0 ||
688 if ((pg->flags & PG_RELEASED) == 0) {
701 if (pg->flags & PG_RELEASED) {
719 * be PG_RELEASED (we caught this above).
uvm_pager.c 387 anon_disposed = (pg->flags & PG_RELEASED) != 0;
410 pg->flags |= PG_RELEASED;
uvm_page.c 1479 pg->flags &= ~(PG_BUSY|PG_RELEASED|PG_PAGER1);
1577 * => caller must make sure that anon-owned pages are not PG_RELEASED.
1599 pg->flags |= PG_RELEASED;
1603 if (pg->flags & PG_RELEASED) {
1608 pg->flags &= ~PG_RELEASED;
1698 KASSERT((pg->flags & (PG_PAGEOUT|PG_RELEASED)) == 0);
1744 KASSERT(pg == NULL || (pg->flags & (PG_RELEASED|PG_PAGEOUT)) == 0 ||
uvm_fault.c 437 if ((pg->flags & PG_RELEASED) != 0) {
457 if ((pg->flags & PG_RELEASED) != 0) {
1949 * - at this point uobjpage can not be PG_RELEASED (since we checked
2087 * NOTE: page can't be waited on or PG_RELEASED because we've
2091 KASSERT((pg->flags & PG_RELEASED) == 0);
2213 if ((pg->flags & PG_RELEASED) != 0 ||
2225 if ((pg->flags & PG_RELEASED) == 0) {
2486 * note that pg can't be PG_RELEASED or PG_BUSY since we did
2490 KASSERT((pg->flags & PG_RELEASED) == 0);
uvm_bio.c 249 if (pg->flags & PG_RELEASED) {
940 if (pg->flags & PG_RELEASED) {
941 pg->flags &= ~PG_RELEASED;
  /src/sys/ufs/lfs/
ulfs_inode.c 243 KASSERT((pgs[i]->flags & PG_RELEASED) == 0);
lfs_vfsops.c 2365 pg->flags &= ~(PG_DELWRI|PG_PAGEOUT|PG_RELEASED);
  /src/sys/ufs/ufs/
ufs_inode.c 274 KASSERT((pgs[i]->flags & PG_RELEASED) == 0);
  /src/sys/miscfs/genfs/
genfs_io.c 80 pg->flags |= PG_RELEASED;
531 if (pg->flags & PG_RELEASED) {
1003 freeflag = pagedaemon ? PG_PAGEOUT : PG_RELEASED;
1023 KASSERT((pg->flags & (PG_RELEASED|PG_PAGEOUT)) == 0 ||
1059 if ((pg->flags & (PG_RELEASED|PG_PAGEOUT)) != 0
1672 pg->flags |= PG_RELEASED;
  /src/sys/rump/librump/rumpkern/
vm.c 715 pg->flags |= PG_RELEASED;
719 if (pg->flags & PG_RELEASED) {
722 pg->flags &= ~PG_RELEASED;
  /src/sys/nfs/
nfs_bio.c 993 if (pgs[i]->flags & (PG_RELEASED|PG_PAGEOUT))

Completed in 23 milliseconds