drm/tests: Add test for drm_atomic_helper_check_modeset()
[drm/drm-misc.git] / fs / jffs2 / compr_rtime.c
blob3bd9d2f3bece203b1dd6814800d0a382ece8a416
1 /*
2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2001-2007 Red Hat, Inc.
5 * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
7 * Created by Arjan van de Ven <arjanv@redhat.com>
9 * For licensing information, see the file 'LICENCE' in this directory.
13 * Very simple lz77-ish encoder.
15 * Theory of operation: Both encoder and decoder have a list of "last
16 * occurrences" for every possible source-value; after sending the
17 * first source-byte, the second byte indicated the "run" length of
18 * matches
20 * The algorithm is intended to only send "whole bytes", no bit-messing.
24 #include <linux/kernel.h>
25 #include <linux/types.h>
26 #include <linux/errno.h>
27 #include <linux/string.h>
28 #include <linux/jffs2.h>
29 #include "compr.h"
31 /* _compress returns the compressed size, -1 if bigger */
32 static int jffs2_rtime_compress(unsigned char *data_in,
33 unsigned char *cpage_out,
34 uint32_t *sourcelen, uint32_t *dstlen)
36 unsigned short positions[256];
37 int outpos = 0;
38 int pos=0;
40 if (*dstlen <= 3)
41 return -1;
43 memset(positions,0,sizeof(positions));
45 while (pos < (*sourcelen) && outpos <= (*dstlen)-2) {
46 int backpos, runlen=0;
47 unsigned char value;
49 value = data_in[pos];
51 cpage_out[outpos++] = data_in[pos++];
53 backpos = positions[value];
54 positions[value]=pos;
56 while ((backpos < pos) && (pos < (*sourcelen)) &&
57 (data_in[pos]==data_in[backpos++]) && (runlen<255)) {
58 pos++;
59 runlen++;
61 cpage_out[outpos++] = runlen;
64 if (outpos >= pos) {
65 /* We failed */
66 return -1;
69 /* Tell the caller how much we managed to compress, and how much space it took */
70 *sourcelen = pos;
71 *dstlen = outpos;
72 return 0;
76 static int jffs2_rtime_decompress(unsigned char *data_in,
77 unsigned char *cpage_out,
78 uint32_t srclen, uint32_t destlen)
80 unsigned short positions[256];
81 int outpos = 0;
82 int pos=0;
84 memset(positions,0,sizeof(positions));
86 while (outpos<destlen) {
87 unsigned char value;
88 int backoffs;
89 int repeat;
91 value = data_in[pos++];
92 cpage_out[outpos++] = value; /* first the verbatim copied byte */
93 repeat = data_in[pos++];
94 backoffs = positions[value];
96 positions[value]=outpos;
97 if (repeat) {
98 if ((outpos + repeat) > destlen) {
99 return 1;
101 if (backoffs + repeat >= outpos) {
102 while(repeat) {
103 cpage_out[outpos++] = cpage_out[backoffs++];
104 repeat--;
106 } else {
107 memcpy(&cpage_out[outpos],&cpage_out[backoffs],repeat);
108 outpos+=repeat;
112 return 0;
115 static struct jffs2_compressor jffs2_rtime_comp = {
116 .priority = JFFS2_RTIME_PRIORITY,
117 .name = "rtime",
118 .compr = JFFS2_COMPR_RTIME,
119 .compress = &jffs2_rtime_compress,
120 .decompress = &jffs2_rtime_decompress,
121 #ifdef JFFS2_RTIME_DISABLED
122 .disabled = 1,
123 #else
124 .disabled = 0,
125 #endif
128 int jffs2_rtime_init(void)
130 return jffs2_register_compressor(&jffs2_rtime_comp);
133 void jffs2_rtime_exit(void)
135 jffs2_unregister_compressor(&jffs2_rtime_comp);