Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231534
b: refs/heads/master
c: 170cf02
h: refs/heads/master
v: v3
  • Loading branch information
Phillip Lougher committed Jan 13, 2011
1 parent 703081d commit 48b8feb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7a43ae523744c01b6187013e781f44c2281c579c
refs/heads/master: 170cf02165272dfe026eba183563bad973ca4f05
9 changes: 4 additions & 5 deletions trunk/fs/squashfs/zlib_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,19 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void **buffer,
struct buffer_head **bh, int b, int offset, int length, int srclength,
int pages)
{
int zlib_err = 0, zlib_init = 0;
int avail, bytes, k = 0, page = 0;
int zlib_err, zlib_init = 0;
int k = 0, page = 0;
z_stream *stream = msblk->stream;

mutex_lock(&msblk->read_data_mutex);

stream->avail_out = 0;
stream->avail_in = 0;

bytes = length;
do {
if (stream->avail_in == 0 && k < b) {
avail = min(bytes, msblk->devblksize - offset);
bytes -= avail;
int avail = min(length, msblk->devblksize - offset);
length -= avail;
wait_on_buffer(bh[k]);
if (!buffer_uptodate(bh[k]))
goto release_mutex;
Expand Down

0 comments on commit 48b8feb

Please sign in to comment.