diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/patches/procfs.patch | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 6e86fb2f..7cd5870f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,6 +30,7 @@ hurd (20090404-3) UNRELEASED; urgency=low * debian/patches/proxy-defpager.diff: New patch to fix proxying defpager. * debian/patches/ext2fs_large_stores.patch: Apply Alioth fix #312328 from Fredrik Hammar to fix random startup crash (Closes: Bug#576519). + * debian/patches/procfs.patch: Fix swap size printout. [ Guillem Jover ] * Update make-new-tarball.sh to exclude git instead of CVS paths. diff --git a/debian/patches/procfs.patch b/debian/patches/procfs.patch index 5fabf133..941c5507 100644 --- a/debian/patches/procfs.patch +++ b/debian/patches/procfs.patch @@ -2435,8 +2435,8 @@ Madhusudan's experimental procfs server for Linux-like /proc + "HighFree:\t%lu kB\n" + "LowTotal:\t%lu kB\n" + "LowFree:\t%lu kB\n" -+ "SwapTotal:\t%lu kB\n" -+ "SwapFree:\t%lu kB\n", ++ "SwapTotal:\t%llu kB\n" ++ "SwapFree:\t%llu kB\n", + mem_size, (PAGES_TO_BYTES(vmstats.free_count)) / 1024 , 0, 0, 0, + (PAGES_TO_BYTES(vmstats.active_count)) / 1024, + (PAGES_TO_BYTES(vmstats.inactive_count)) / 1024, 0, 0, 0, 0, |