Clarifying memory management with page folios
Clarifying memory management with page folios
Posted Mar 18, 2021 20:14 UTC (Thu) by mathstuf (subscriber, #69389)In reply to: Clarifying memory management with page folios by logang
Parent article: Clarifying memory management with page folios
Posted Mar 19, 2021 3:17 UTC (Fri)
by willy (subscriber, #9762)
[Link] (5 responses)
https://lore.kernel.org/linux-fsdevel/20201113174409.GH17...
Criteria: Must be easily greppable (book is bad), must be short, shouldn't be too cutesy (banqyet by analogy with byte was not under consideration).
Online thesauri are your friends, but at the end of the day it's always a matter of taste.
Posted Mar 19, 2021 4:38 UTC (Fri)
by jonas.bonn (subscriber, #47561)
[Link]
Normally, pages are created by folding a 'sheet'... so there you go!
https://en.wikipedia.org/wiki/Paper_size#/media/File:A_si...
Posted Mar 19, 2021 9:32 UTC (Fri)
by geert (subscriber, #98403)
[Link] (3 responses)
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
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
```