Re: installer swap computation

2013-12-03 Thread Chris Murphy
On Dec 3, 2013, at 1:32 AM, Chris Murphy wrote: > https://git.fedorahosted.org/cgit/blivet.git/tree/blivet/devicelibs/swap.py > >elif 8192 <= mem < 65536: >swap = mem / 2 >else: >swap = 4096 > if hibernation: >if mem <= 65536: >swap = mem + swap >

installer swap computation

2013-12-03 Thread Chris Murphy
https://git.fedorahosted.org/cgit/blivet.git/tree/blivet/devicelibs/swap.py elif 8192 <= mem < 65536: swap = mem / 2 else: swap = 4096 if hibernation: if mem <= 65536: swap = mem + swap I interpret this to mean suggest swap would always be greater th