Skip to content

Commit

Permalink
Fix "pud_offet" typo in address-space.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankOu2001 authored and tavip committed Nov 8, 2024
1 parent 94dbd7b commit c3e7133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Documentation/teaching/lectures/address-space.rst
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ physical address, using the Linux page table APIs:
void *laddr, *paddr;
pgd = pgd_offset(mm, vaddr);
pud = pud_offet(pgd, vaddr);
pud = pud_offset(pgd, vaddr);
pmd = pmd_offset(pud, vaddr);
pte = pte_offset(pmd, vaddr);
page = pte_page(pte);
Expand Down

0 comments on commit c3e7133

Please sign in to comment.