Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 64193
b: refs/heads/master
c: 3520c92
h: refs/heads/master
i:
  64191: 487c2bd
v: v3
  • Loading branch information
Cornelia Huck authored and Martin Schwidefsky committed Aug 22, 2007
1 parent 66c83fb commit a47e27c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8b14cb9953c6b569327e9372718cff09a98f9589
refs/heads/master: 3520c92283bb7ddd59daf90cfc1eb107dc9ab76c
5 changes: 2 additions & 3 deletions trunk/arch/i386/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,9 @@ static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
pmd_k = pmd_offset(pud_k, address);
if (!pmd_present(*pmd_k))
return NULL;
if (!pmd_present(*pmd)) {
if (!pmd_present(*pmd))
set_pmd(pmd, *pmd_k);
arch_flush_lazy_mmu_mode();
} else
else
BUG_ON(pmd_page(*pmd) != pmd_page(*pmd_k));
return pmd_k;
}
Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/s390/cio/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ static int ccw_uevent(struct device *dev, char **envp, int num_envp,
snprint_alias(modalias_buf, sizeof(modalias_buf), id, "");
ret = add_uevent_var(envp, num_envp, &i, buffer, buffer_size, &len,
"MODALIAS=%s", modalias_buf);
return ret;
if (ret)
return ret;
envp[i] = NULL;
return 0;
}

struct bus_type ccw_bus_type;
Expand Down

0 comments on commit a47e27c

Please sign in to comment.