From: Lin Liu <lin.liu@citrix.com>
To: <xen-devel@lists.xenproject.org>
Cc: "Lin Liu" <lin.liu@citrix.com>,
"Andrew Cooper" <andrew.cooper3@citrix.com>,
"Daniel De Graaf" <dgdegra@tycho.nsa.gov>,
"Daniel P. Smith" <dpsmith@apertussolutions.com>,
"George Dunlap" <george.dunlap@citrix.com>,
"Ian Jackson" <iwj@xenproject.org>,
"Jan Beulich" <jbeulich@suse.com>,
"Julien Grall" <julien@xen.org>,
"Bertrand Marquis" <bertrand.marquis@arm.com>,
"Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>,
"Roger Pau Monné" <roger.pau@citrix.com>,
"Ross Lagerwall" <ross.lagerwall@citrix.com>,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Volodymyr Babchuk" <Volodymyr_Babchuk@epam.com>,
"Wei Liu" <wl@xen.org>
Subject: [PATCH v4 0/6] Implement byteswap and update references
Date: Mon, 23 May 2022 05:52:16 -0400 [thread overview]
Message-ID: <cover.1653295437.git.lin.liu@citrix.com> (raw)
Lin Liu (6):
xen: implement byteswap
crypto/vmac: Simplify code with byteswap
arm64/find_next_bit: Remove ext2_swab()
xen: Switch to byteswap
tools: Use new byteswap helper
byteorder: Remove byteorder
.../libs/guest/xg_dom_decompress_unsafe_xz.c | 5 +
.../guest/xg_dom_decompress_unsafe_zstd.c | 3 +-
xen/arch/arm/arm64/lib/find_next_bit.c | 36 +---
xen/arch/arm/include/asm/byteorder.h | 6 +-
xen/arch/x86/include/asm/byteorder.h | 34 +---
xen/common/device_tree.c | 44 ++---
xen/common/libelf/libelf-private.h | 6 +-
xen/common/xz/private.h | 2 +-
xen/crypto/vmac.c | 76 +-------
xen/include/xen/byteorder.h | 56 ++++++
xen/include/xen/byteorder/big_endian.h | 102 ----------
xen/include/xen/byteorder/generic.h | 68 -------
xen/include/xen/byteorder/little_endian.h | 102 ----------
xen/include/xen/byteorder/swab.h | 183 ------------------
xen/include/xen/byteswap.h | 44 +++++
xen/include/xen/compiler.h | 24 +++
xen/include/xen/lib.h | 4 -
xen/include/xen/unaligned.h | 12 +-
18 files changed, 180 insertions(+), 627 deletions(-)
create mode 100644 xen/include/xen/byteorder.h
delete mode 100644 xen/include/xen/byteorder/big_endian.h
delete mode 100644 xen/include/xen/byteorder/generic.h
delete mode 100644 xen/include/xen/byteorder/little_endian.h
delete mode 100644 xen/include/xen/byteorder/swab.h
create mode 100644 xen/include/xen/byteswap.h
--
2.27.0
next reply other threads:[~2022-05-23 9:53 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-23 9:52 Lin Liu [this message]
2022-05-23 9:52 ` [PATCH v4 1/6] xen: implement byteswap Lin Liu
2022-05-23 10:07 ` Roger Pau Monné
2022-05-23 11:00 ` Jan Beulich
2022-05-23 11:05 ` Jan Beulich
2022-05-23 9:52 ` [PATCH v4 2/6] crypto/vmac: Simplify code with byteswap Lin Liu
2022-05-23 9:52 ` [PATCH v4 3/6] arm64/find_next_bit: Remove ext2_swab() Lin Liu
2022-05-23 10:10 ` Julien Grall
2022-05-23 9:52 ` [PATCH v4 4/6] xen: Switch to byteswap Lin Liu
2022-05-23 10:12 ` Julien Grall
2022-05-23 11:09 ` Jan Beulich
2022-05-23 9:52 ` [PATCH v4 5/6] tools: Use new byteswap helper Lin Liu
2022-05-23 11:10 ` Jan Beulich
2022-05-24 2:13 ` Lin Liu (刘林)
2022-05-24 6:10 ` Jan Beulich
2022-05-24 6:52 ` Lin Liu (刘林)
2022-05-24 6:58 ` Jan Beulich
2022-05-24 7:17 ` Lin Liu (刘林)
2022-05-24 8:52 ` Jan Beulich
2022-05-23 9:52 ` [PATCH v4 6/6] byteorder: Remove byteorder Lin Liu
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=cover.1653295437.git.lin.liu@citrix.com \
--to=lin.liu@citrix.com \
--cc=Volodymyr_Babchuk@epam.com \
--cc=andrew.cooper3@citrix.com \
--cc=bertrand.marquis@arm.com \
--cc=dgdegra@tycho.nsa.gov \
--cc=dpsmith@apertussolutions.com \
--cc=george.dunlap@citrix.com \
--cc=iwj@xenproject.org \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=konrad.wilk@oracle.com \
--cc=roger.pau@citrix.com \
--cc=ross.lagerwall@citrix.com \
--cc=sstabellini@kernel.org \
--cc=wl@xen.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.