Rev 2467 | Rev 2745 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2467 | Rev 2647 | ||
|---|---|---|---|
| Line 302... | Line 302... | ||
| 302 | /* |
302 | /* |
| 303 | * Skip read-only areas of used space that are backed |
303 | * Skip read-only areas of used space that are backed |
| 304 | * by the ELF image. |
304 | * by the ELF image. |
| 305 | */ |
305 | */ |
| 306 | if (!(area->flags & AS_AREA_WRITE)) |
306 | if (!(area->flags & AS_AREA_WRITE)) |
| 307 | if (base + count*PAGE_SIZE <= start_anon) |
307 | if (base + count * PAGE_SIZE <= start_anon) |
| 308 | continue; |
308 | continue; |
| 309 | 309 | ||
| 310 | for (j = 0; j < count; j++) { |
310 | for (j = 0; j < count; j++) { |
| 311 | pte_t *pte; |
311 | pte_t *pte; |
| 312 | 312 | ||