Clarifying memory management with page folios
Clarifying memory management with page folios
Posted Mar 19, 2021 9:32 UTC (Fri) by geert (subscriber, #98403)In reply to: Clarifying memory management with page folios by willy
Parent article: Clarifying memory management with page folios
BTW, "aigle" is not known by "dict", nor by my paper dictionary.
Posted Mar 19, 2021 11:10 UTC (Fri)
by willy (subscriber, #9762)
[Link] (2 responses)
https://en.wikipedia.org/wiki/Units_of_paper_quantity is also a good source of names.
Honestly, I'm 120 patches in at this point. Someone's going to have to be really convincing to have a better name than folio.
Posted Mar 19, 2021 11:17 UTC (Fri)
by geert (subscriber, #98403)
[Link]
Posted Apr 2, 2021 11:13 UTC (Fri)
by Hi-Angel (guest, #110915)
[Link]
A little trick: doing a rename over all of the 120 patches might be done in just under a minute ;) What I'd do here is:
```
Read `sp` as `sed`.
For the sake of completeness: sp is my alias to sed_perl, which in turn is a wrapper over perl to replace text in files https://github.com/Hi-Angel/dotfiles/blob/140c78951502754... I was at some point annoyed by discrepancies in behavior between grep, sed, awk, and what not, and migrated to using perl + ack (a perl version of grep). Never looked back.
So… hopefully this will help.
Clarifying memory management with page folios
Clarifying memory management with page folios
Clarifying memory management with page folios
git format-patch -120 --stdout > 1.patch
sp folio my_better_name
git am -3 1.patch
```