summaryrefslogtreecommitdiffstats
path: root/src/push_to_qemu.pl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/push_to_qemu.pl
parentInitial commit. (diff)
downloadceph-upstream/16.2.11+ds.tar.xz
ceph-upstream/16.2.11+ds.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/push_to_qemu.pl')
-rwxr-xr-xsrc/push_to_qemu.pl21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/push_to_qemu.pl b/src/push_to_qemu.pl
new file mode 100755
index 000000000..380654f1e
--- /dev/null
+++ b/src/push_to_qemu.pl
@@ -0,0 +1,21 @@
+#!/usr/bin/perl
+
+use strict;
+
+my $usage = "./push_to_qemu.pl <path_to_qemu>\n";
+
+my $qemu = shift @ARGV || die $usage;
+die $usage unless -d $qemu;
+
+die "not in a git tree" unless `cd $qemu && git rev-parse HEAD`;
+
+my $dir = '.';
+until (-d "$dir/.git") {
+ $dir .= "/..";
+}
+
+print "pushing changed shared files from $dir to $qemu...\n";
+system "cat $dir/src/include/rbd_types.h | sed 's/__u32/uint32_t/g; s/__u8/uint8_t/g; s/__.*16/uint16_t/g; s/__.*32/uint32_t/g; s/__.*64/uint64_t/g; s/_FS_CEPH_RBD/QEMU_BLOCK_RBD_TYPES_H/g; s/^\t/ /g' | expand | grep -v \"linux/types.h\" > $qemu/block/rbd_types.h";
+
+print "done.\n";
+