From patchwork Fri Jun 15 18:23:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhu Lingshan X-Patchwork-Id: 10467229 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id E55FE601C2 for ; Fri, 15 Jun 2018 18:24:22 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D5BBE28E3D for ; Fri, 15 Jun 2018 18:24:22 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id CA50828E40; Fri, 15 Jun 2018 18:24:22 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5CD0428E3B for ; Fri, 15 Jun 2018 18:24:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756428AbeFOSYV (ORCPT ); Fri, 15 Jun 2018 14:24:21 -0400 Received: from smtp2.provo.novell.com ([137.65.250.81]:51906 "EHLO smtp2.provo.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756407AbeFOSYU (ORCPT ); Fri, 15 Jun 2018 14:24:20 -0400 Received: from vstart.localdomain (prv-ext-foundry1int.gns.novell.com [137.65.251.240]) by smtp2.provo.novell.com with ESMTP (TLS encrypted); Fri, 15 Jun 2018 12:24:13 -0600 From: Zhu Lingshan To: target-devel@vger.kernel.org, linux-scsi@vger.kernel.org, nab@linux-iscsi.org, mchristi@redhat.com, martin.petersen@oracle.com Cc: hare@suse.de, lduncan@suse.com, ddiss@suse.de, lszhu@suse.de, Zhu Lingshan Subject: [PATCH 04/33] TCMU PR: add functions can store PR info into devs Date: Sat, 16 Jun 2018 02:23:13 +0800 Message-Id: <20180615182342.6239-4-lszhu@suse.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180615182342.6239-1-lszhu@suse.com> References: <20180615182342.6239-1-lszhu@suse.com> Sender: target-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: target-devel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch added a function tcmu_send_set_pr_info_event() to store Persistent Reservation information into a TCMU device (for example, if we use a RBD device, the information will be stored in it's metadata), added it's wrapper function tcmu_set_dev_pr_info() as well. Signed-off-by: Zhu Lingshan --- drivers/target/target_core_user.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/drivers/target/target_core_user.c b/drivers/target/target_core_user.c index a1ed70d0988a..d368c656ef79 100644 --- a/drivers/target/target_core_user.c +++ b/drivers/target/target_core_user.c @@ -1698,6 +1698,26 @@ static int tcmu_send_get_pr_info_event(struct tcmu_dev *udev) &skb, &msg_header); } +static int tcmu_send_set_pr_info_event(struct tcmu_dev *udev, char *buf) +{ + struct sk_buff *skb = NULL; + void *msg_header = NULL; + int ret = 0; + + ret = tcmu_netlink_event_init(udev, TCMU_CMD_SET_PR_INFO, + &skb, &msg_header); + if (ret < 0) + return ret; + ret = nla_put_string(skb, TCMU_ATTR_PR_INFO, buf); + if (ret < 0) { + nlmsg_free(skb); + return ret; + } + + return tcmu_netlink_event_send(udev, TCMU_CMD_SET_PR_INFO, + &skb, &msg_header); +} + static int tcmu_update_uio_info(struct tcmu_dev *udev) { struct tcmu_hba *hba = udev->hba->hba_ptr; @@ -1740,6 +1760,15 @@ static int tcmu_get_dev_pr_info(struct tcmu_dev *udev, int *val_len) return ret; } +/* + * This function will store PR INFO(a string) to a TCMU + * device metadata. + */ +static int tcmu_set_dev_pr_info(struct tcmu_dev *udev, void *val) +{ + return tcmu_send_set_pr_info_event(udev, val); +} + static int tcmu_configure_device(struct se_device *dev) { struct tcmu_dev *udev = TCMU_DEV(dev);