git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sha1_file.c: Round the mmap offset to half the window size.
@ 2007-02-14 17:11 Alexandre Julliard
  0 siblings, 0 replies; only message in thread
From: Alexandre Julliard @ 2007-02-14 17:11 UTC (permalink / raw)
  To: git

This ensures that a given area is mapped at most twice, and greatly
reduces the virtual address space usage.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
---
 sha1_file.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sha1_file.c b/sha1_file.c
index 8ad7fad..a217c3c 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -665,7 +665,7 @@ unsigned char* use_pack(struct packed_git *p,
 			if (!page_size)
 				page_size = getpagesize();
 			win = xcalloc(1, sizeof(*win));
-			win->offset = (offset / page_size) * page_size;
+			win->offset = (offset / (packed_git_window_size/2)) * (packed_git_window_size/2);
 			win->len = p->pack_size - win->offset;
 			if (win->len > packed_git_window_size)
 				win->len = packed_git_window_size;
-- 
1.5.0.7.g2fa71

-- 
Alexandre Julliard
julliard@winehq.org

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-14 17:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-14 17:11 [PATCH] sha1_file.c: Round the mmap offset to half the window size Alexandre Julliard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).