-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashfs: Generalise paging handling in the decompressors
Further generalise the decompressors by adding a page handler abstraction. This adds helpers to allow the decompressors to access and process the output buffers in an implementation independant manner. This allows different types of output buffer to be passed to the decompressors, with the implementation specific aspects handled at decompression time, but without the knowledge being held in the decompressor wrapper code. This will allow the decompressors to handle Squashfs cache buffers, and page cache pages. This patch adds the abstraction and an implementation for the caches. Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk> Reviewed-by: Minchan Kim <minchan@kernel.org>
- Loading branch information
Phillip Lougher
committed
Nov 20, 2013
1 parent
d208383
commit 846b730
Showing
13 changed files
with
163 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#ifndef PAGE_ACTOR_H | ||
#define PAGE_ACTOR_H | ||
/* | ||
* Copyright (c) 2013 | ||
* Phillip Lougher <phillip@squashfs.org.uk> | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2. See | ||
* the COPYING file in the top-level directory. | ||
*/ | ||
|
||
struct squashfs_page_actor { | ||
void **page; | ||
int pages; | ||
int length; | ||
int next_page; | ||
}; | ||
|
||
static inline struct squashfs_page_actor *squashfs_page_actor_init(void **page, | ||
int pages, int length) | ||
{ | ||
struct squashfs_page_actor *actor = kmalloc(sizeof(*actor), GFP_KERNEL); | ||
|
||
if (actor == NULL) | ||
return NULL; | ||
|
||
actor->length = length ? : pages * PAGE_CACHE_SIZE; | ||
actor->page = page; | ||
actor->pages = pages; | ||
actor->next_page = 0; | ||
return actor; | ||
} | ||
|
||
static inline void *squashfs_first_page(struct squashfs_page_actor *actor) | ||
{ | ||
actor->next_page = 1; | ||
return actor->page[0]; | ||
} | ||
|
||
static inline void *squashfs_next_page(struct squashfs_page_actor *actor) | ||
{ | ||
return actor->next_page == actor->pages ? NULL : | ||
actor->page[actor->next_page++]; | ||
} | ||
|
||
static inline void squashfs_finish_page(struct squashfs_page_actor *actor) | ||
{ | ||
/* empty */ | ||
} | ||
#endif |
Oops, something went wrong.