From: alison.schofield@intel.com
To: Ben Widawsky <ben.widawsky@intel.com>,
Dan Williams <dan.j.williams@intel.com>,
Ira Weiny <ira.weiny@intel.com>,
Vishal Verma <vishal.l.verma@intel.com>
Cc: Alison Schofield <alison.schofield@intel.com>, linux-cxl@vger.kernel.org
Subject: [PATCH v4 0/9] Do not allow set-partition immediate mode
Date: Tue, 29 Mar 2022 18:30:15 -0700 [thread overview]
Message-ID: <cover.1648601710.git.alison.schofield@intel.com> (raw)
From: Alison Schofield <alison.schofield@intel.com>
Blocking immediate mode in set-partition info triggered a
refactoring of the send path of userspace mailbox commands.
The v1 to address the issue was a single patch [1] that inserted
a new immediate mode check in the send path where the payload was
available for examining. That was not in a validation function.
Revisions after v1 included the refactoring of the send path so
that validation work all spawns from cxl_validate_cmd_from_user().
Patches 1-7: Refactor existing code so that all validation work
can spawn from cxl_validate_cmd_from_user().
The movement intends to cleanly rip the work of building a
mailbox command away from handle_mailbox_command_from_user()
and give it to cxl_validate_cmd_from_user().
Patch 8: Blocks the immediate mode of the set-partition command.
Patch 9: Removes CXL_PMEM exclusive commands restriction.
[1]https://lore.kernel.org/linux-cxl/20220103202100.784194-1-alison.schofield@intel.com/
Changes in v4: (All from Jonathan's review - Thank-you Jonathan)
- Add a blank line after return
- Combine cxl_mem_command and info declaration and init.
- Replace "rc =" with direct returns in cxl_validate_cmd_from_user()
- Don't init and then overwrite out_size
- Rm the 'refactor foreshadowing' goto & don't restore it later
- Wordsmithing in Patch 4 commit log
- Mv error path to be out of line, normal path inline.
- Move kvfree()'s from handle_mbox...() to cxl_send_cmd()
Patches 1,2,4,5,6,7,8: Added Jonathan Reviewed-by Tags.
Patches 2,7,8,9: No code changes
Changes in v3:
- Split up the 'Centralize the validation...' patch into 6 pieces.
Patch: cxl/mbox: Move cxl_mem_command construction to helper funcs
- Safely initialize the cxl_mem_command structs. (Dan)
- Remove unneeded memcpy (Dan)
Patch: cxl/mbox: Block immediate mode in SET_PARTITION_INFO command
- No Changes
Patch: cxl/pmem: Remove CXL SET_PARTITION_INFO from exclusive_cmds list
- No Changes
Changes in v2:
- Refactor the send path of userspace mbox cmds. (Dan, Ben)
- Patch 3 commit log - update the need to block. (Dan)
- Return -EBUSY (not -EINVAL), when blocking immediate mode. (Ben)
- Remove unneeded cast of void (payload_in). (dan)
- s/u64/__le64 in struct cxl_mbox_set_partition_info. (Dan)
Alison Schofield (9):
cxl/mbox: Move cxl_mem_command construction to helper funcs
cxl/mbox: Move raw command warning to raw command validation
cxl/mbox: Move build of user mailbox cmd to a helper function
cxl/mbox: Construct a users cxl_mbox_cmd in the validation path
cxl/mbox: Remove dependency on cxl_mem_command for a debug msg
cxl/mbox: Make handle_mailbox_cmd_from_user() use a mbox param
cxl/mbox: Move cxl_mem_command param to a local variable
cxl/mbox: Block immediate mode in SET_PARTITION_INFO command
cxl/pmem: Remove CXL SET_PARTITION_INFO from exclusive_cmds list
drivers/cxl/core/mbox.c | 339 ++++++++++++++++++++++++----------------
drivers/cxl/cxlmem.h | 7 +
drivers/cxl/pmem.c | 1 -
3 files changed, 211 insertions(+), 136 deletions(-)
base-commit: 9b688fc651b9d2b633e8d959454670aba1c39162
--
2.31.1
next reply other threads:[~2022-03-30 1:28 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-30 1:30 alison.schofield [this message]
2022-03-30 1:30 ` [PATCH v4 1/9] cxl/mbox: Move cxl_mem_command construction to helper funcs alison.schofield
2022-03-30 3:23 ` Dan Williams
2022-03-30 1:30 ` [PATCH v4 2/9] cxl/mbox: Move raw command warning to raw command validation alison.schofield
2022-03-30 3:24 ` Dan Williams
2022-03-30 1:30 ` [PATCH v4 3/9] cxl/mbox: Move build of user mailbox cmd to a helper function alison.schofield
2022-03-30 3:29 ` Dan Williams
2022-03-30 1:30 ` [PATCH v4 4/9] cxl/mbox: Construct a users cxl_mbox_cmd in the validation path alison.schofield
2022-03-30 4:39 ` Dan Williams
2022-03-30 1:30 ` [PATCH v4 5/9] cxl/mbox: Remove dependency on cxl_mem_command for a debug msg alison.schofield
2022-03-30 4:50 ` Dan Williams
2022-03-30 19:14 ` Alison Schofield
2022-03-30 1:30 ` [PATCH v4 6/9] cxl/mbox: Make handle_mailbox_cmd_from_user() use a mbox param alison.schofield
2022-03-30 5:00 ` Dan Williams
2022-03-30 1:30 ` [PATCH v4 7/9] cxl/mbox: Move cxl_mem_command param to a local variable alison.schofield
2022-03-30 1:30 ` [PATCH v4 8/9] cxl/mbox: Block immediate mode in SET_PARTITION_INFO command alison.schofield
2022-03-30 1:30 ` [PATCH v4 9/9] cxl/pmem: Remove CXL SET_PARTITION_INFO from exclusive_cmds list alison.schofield
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.1648601710.git.alison.schofield@intel.com \
--to=alison.schofield@intel.com \
--cc=ben.widawsky@intel.com \
--cc=dan.j.williams@intel.com \
--cc=ira.weiny@intel.com \
--cc=linux-cxl@vger.kernel.org \
--cc=vishal.l.verma@intel.com \
/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.