Skip to content

Commit

Permalink
GenWQE: Disable circumvention before and move it to later point in time
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Haverkamp <[email protected]>
  • Loading branch information
fhaverkamp committed Dec 1, 2017
1 parent 6d833d8 commit 35da4a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/hardware.c
Original file line number Diff line number Diff line change
Expand Up @@ -1461,6 +1461,13 @@ int h_inflate(z_streamp strm, int flush)
(strm->avail_out == 0))
return Z_OK; /* need new output buffer */

#if 0
/*
* FIXME We have put this now behind the hardware decompression, where
* it should have been already from the beginning. Wonder if that
* is passing all the testcases. If it does, we can hopefully remove
* this.
*/
/*
* Need more output space, just useful if Z_STREAM_END
* not seen before.
Expand All @@ -1485,6 +1492,7 @@ int h_inflate(z_streamp strm, int flush)
#endif
return rc;
}
#endif

/*
* Original idea: Do not send 0 data to HW
Expand Down

0 comments on commit 35da4a2

Please sign in to comment.