All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Smith" <dpsmith@apertussolutions.com>
To: xen-devel@lists.xenproject.org
Cc: Jason Andryuk <jason.andryuk@amd.com>,
	"Daniel P. Smith" <dpsmith@apertussolutions.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	George Dunlap <george.dunlap@citrix.com>,
	Jan Beulich <jbeulich@suse.com>, Julien Grall <julien@xen.org>,
	Stefano Stabellini <sstabellini@kernel.org>
Subject: [PATCH 1/5] gzip: colocate gunzip code files
Date: Thu, 11 Apr 2024 11:25:14 -0400	[thread overview]
Message-ID: <20240411152518.2995-2-dpsmith@apertussolutions.com> (raw)
In-Reply-To: <20240411152518.2995-1-dpsmith@apertussolutions.com>

This patch moves the gunzip code files to common/gzip. Makefiles are adjusted
accordingly.

Signed-off-by: Daniel P. Smith <dpsmith@apertussolutions.com>
---
 xen/common/Makefile             | 2 +-
 xen/common/gzip/Makefile        | 1 +
 xen/common/{ => gzip}/gunzip.c  | 0
 xen/common/{ => gzip}/inflate.c | 0
 4 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 xen/common/gzip/Makefile
 rename xen/common/{ => gzip}/gunzip.c (100%)
 rename xen/common/{ => gzip}/inflate.c (100%)

diff --git a/xen/common/Makefile b/xen/common/Makefile
index e5eee19a8537..d512cad5243f 100644
--- a/xen/common/Makefile
+++ b/xen/common/Makefile
@@ -14,7 +14,7 @@ obj-y += event_channel.o
 obj-y += event_fifo.o
 obj-$(CONFIG_GRANT_TABLE) += grant_table.o
 obj-y += guestcopy.o
-obj-bin-y += gunzip.init.o
+obj-y += gzip/
 obj-$(CONFIG_HYPFS) += hypfs.o
 obj-$(CONFIG_IOREQ_SERVER) += ioreq.o
 obj-y += irq.o
diff --git a/xen/common/gzip/Makefile b/xen/common/gzip/Makefile
new file mode 100644
index 000000000000..bda73c0184ad
--- /dev/null
+++ b/xen/common/gzip/Makefile
@@ -0,0 +1 @@
+obj-bin-y += gunzip.init.o
diff --git a/xen/common/gunzip.c b/xen/common/gzip/gunzip.c
similarity index 100%
rename from xen/common/gunzip.c
rename to xen/common/gzip/gunzip.c
diff --git a/xen/common/inflate.c b/xen/common/gzip/inflate.c
similarity index 100%
rename from xen/common/inflate.c
rename to xen/common/gzip/inflate.c
-- 
2.30.2



  reply	other threads:[~2024-04-11 15:26 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-11 15:25 [PATCH 0/5] Clean up of gzip decompressor Daniel P. Smith
2024-04-11 15:25 ` Daniel P. Smith [this message]
2024-04-11 16:00   ` [PATCH 1/5] gzip: colocate gunzip code files Luca Fancellu
2024-04-11 18:44     ` Andrew Cooper
2024-04-11 19:43       ` Luca Fancellu
2024-04-12 11:07         ` Daniel P. Smith
2024-04-11 15:25 ` [PATCH 2/5] gzip: clean up comments and fix code alignment Daniel P. Smith
2024-04-11 19:11   ` Andrew Cooper
2024-04-12 11:28     ` Daniel P. Smith
2024-04-12 12:15       ` Andrew Cooper
2024-04-11 15:25 ` [PATCH 3/5] gzip: refactor state tracking Daniel P. Smith
2024-04-11 19:24   ` Andrew Cooper
2024-04-12 11:34     ` Daniel P. Smith
2024-04-12 11:41       ` Daniel P. Smith
2024-04-12 12:18         ` Andrew Cooper
2024-04-12 12:51           ` Daniel P. Smith
2024-04-12 12:53             ` Andrew Cooper
2024-04-12 13:11               ` Daniel P. Smith
2024-04-18  7:36     ` Jan Beulich
2024-04-18  9:13       ` Daniel P. Smith
2024-04-18  9:17         ` Jan Beulich
2024-04-18  9:22           ` Daniel P. Smith
2024-04-11 15:25 ` [PATCH 4/5] gzip: move crc state into consilidated gzip state Daniel P. Smith
2024-04-11 19:43   ` Andrew Cooper
2024-04-12 11:42     ` Daniel P. Smith
2024-04-11 15:25 ` [PATCH 5/5] gzip: move huffman code table tracking into " Daniel P. Smith
2024-04-11 19:49   ` Andrew Cooper
2024-04-12 11:47     ` Daniel P. Smith

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240411152518.2995-2-dpsmith@apertussolutions.com \
    --to=dpsmith@apertussolutions.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=george.dunlap@citrix.com \
    --cc=jason.andryuk@amd.com \
    --cc=jbeulich@suse.com \
    --cc=julien@xen.org \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.