From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: Michael Vogt <michael.vogt@gmail.com>, Michael Vogt <mvogt@redhat.com>
Subject: [PULL 01/38] linux-user: Add ioctl for BLKBSZSET
Date: Wed, 5 Jun 2024 10:22:16 -0700 [thread overview]
Message-ID: <20240605172253.356302-2-richard.henderson@linaro.org> (raw)
In-Reply-To: <20240605172253.356302-1-richard.henderson@linaro.org>
From: Michael Vogt <michael.vogt@gmail.com>
Tiny patch to add the ioctl wrapper definition for BLKBSZSET.
Signed-off-by: Michael Vogt <mvogt@redhat.com>
Message-Id: <20240423152438.19841-2-mvogt@redhat.com>
---
linux-user/ioctls.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/linux-user/ioctls.h b/linux-user/ioctls.h
index d508d0c04a..3b41128fd7 100644
--- a/linux-user/ioctls.h
+++ b/linux-user/ioctls.h
@@ -102,6 +102,7 @@
IOCTL(BLKRAGET, IOC_R, MK_PTR(TYPE_LONG))
IOCTL(BLKSSZGET, IOC_R, MK_PTR(TYPE_INT))
IOCTL(BLKBSZGET, IOC_R, MK_PTR(TYPE_INT))
+ IOCTL(BLKBSZSET, IOC_W, MK_PTR(TYPE_INT))
IOCTL_SPECIAL(BLKPG, IOC_W, do_ioctl_blkpg,
MK_PTR(MK_STRUCT(STRUCT_blkpg_ioctl_arg)))
--
2.34.1
next prev parent reply other threads:[~2024-06-05 17:23 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-05 17:22 [PULL 00/38] sparc + linux-user patch queue Richard Henderson
2024-06-05 17:22 ` Richard Henderson [this message]
2024-06-05 17:22 ` [PULL 02/38] target/sparc: Fix ARRAY8 Richard Henderson
2024-06-05 17:22 ` [PULL 03/38] target/sparc: Rewrite gen_edge Richard Henderson
2024-06-05 17:22 ` [PULL 04/38] target/sparc: Fix do_dc Richard Henderson
2024-06-05 17:22 ` [PULL 05/38] target/sparc: Fix helper_fmul8ulx16 Richard Henderson
2024-06-05 17:22 ` [PULL 06/38] target/sparc: Perform DFPREG/QFPREG in decodetree Richard Henderson
2024-06-05 17:22 ` [PULL 07/38] target/sparc: Remove gen_dest_fpr_D Richard Henderson
2024-06-05 17:22 ` [PULL 08/38] target/sparc: Remove cpu_fpr[] Richard Henderson
2024-06-05 17:22 ` [PULL 09/38] target/sparc: Use gvec for VIS1 parallel add/sub Richard Henderson
2024-06-05 17:22 ` [PULL 10/38] target/sparc: Implement FMAf extension Richard Henderson
2024-06-05 17:22 ` [PULL 11/38] target/sparc: Add feature bits for VIS 3 Richard Henderson
2024-06-05 17:22 ` [PULL 12/38] target/sparc: Implement ADDXC, ADDXCcc Richard Henderson
2024-06-05 17:22 ` [PULL 13/38] target/sparc: Implement CMASK instructions Richard Henderson
2024-06-05 17:22 ` [PULL 14/38] target/sparc: Implement FCHKSM16 Richard Henderson
2024-06-05 17:22 ` [PULL 15/38] target/sparc: Implement FHADD, FHSUB, FNHADD, FNADD, FNMUL Richard Henderson
2024-06-05 17:22 ` [PULL 16/38] target/sparc: Implement FLCMP Richard Henderson
2024-06-05 17:22 ` [PULL 17/38] target/sparc: Implement FMEAN16 Richard Henderson
2024-06-05 17:22 ` [PULL 18/38] target/sparc: Implement FPADD64, FPSUB64 Richard Henderson
2024-06-05 17:22 ` [PULL 19/38] target/sparc: Implement FPADDS, FPSUBS Richard Henderson
2024-06-05 17:22 ` [PULL 20/38] target/sparc: Implement FPCMPEQ8, FPCMPNE8, FPCMPULE8, FPCMPUGT8 Richard Henderson
2024-06-05 17:22 ` [PULL 21/38] target/sparc: Implement FSLL, FSRL, FSRA, FSLAS Richard Henderson
2024-06-05 17:22 ` [PULL 22/38] target/sparc: Implement LDXEFSR Richard Henderson
2024-06-05 17:22 ` [PULL 23/38] target/sparc: Implement LZCNT Richard Henderson
2024-06-05 17:22 ` [PULL 24/38] target/sparc: Implement MOVsTOw, MOVdTOx, MOVwTOs, MOVxTOd Richard Henderson
2024-06-05 17:22 ` [PULL 25/38] target/sparc: Implement PDISTN Richard Henderson
2024-06-05 17:22 ` [PULL 26/38] target/sparc: Implement UMULXHI Richard Henderson
2024-06-05 17:22 ` [PULL 27/38] target/sparc: Implement XMULX Richard Henderson
2024-06-05 17:22 ` [PULL 28/38] target/sparc: Enable VIS3 feature bit Richard Henderson
2024-06-05 17:22 ` [PULL 29/38] target/sparc: Implement IMA extension Richard Henderson
2024-06-05 17:22 ` [PULL 30/38] target/sparc: Add feature bit for VIS4 Richard Henderson
2024-06-05 17:22 ` [PULL 31/38] target/sparc: Implement FALIGNDATAi Richard Henderson
2024-06-05 17:22 ` [PULL 32/38] target/sparc: Implement 8-bit FPADD, FPADDS, and FPADDUS Richard Henderson
2024-06-05 17:22 ` [PULL 33/38] target/sparc: Implement VIS4 comparisons Richard Henderson
2024-06-05 17:22 ` [PULL 34/38] target/sparc: Implement FPMIN, FPMAX Richard Henderson
2024-06-05 17:22 ` [PULL 35/38] target/sparc: Implement SUBXC, SUBXCcc Richard Henderson
2024-06-05 17:22 ` [PULL 36/38] target/sparc: Implement MWAIT Richard Henderson
2024-06-05 17:22 ` [PULL 37/38] target/sparc: Implement monitor ASIs Richard Henderson
2024-06-05 17:22 ` [PULL 38/38] target/sparc: Enable VIS4 feature bit Richard Henderson
2024-06-05 18:49 ` [PULL 00/38] sparc + linux-user patch queue Richard Henderson
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=20240605172253.356302-2-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=michael.vogt@gmail.com \
--cc=mvogt@redhat.com \
--cc=qemu-devel@nongnu.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).