fabrics-cmd.c (82ffd0454bd9bd57780966d47bfd56d579dd4fb3) | fabrics-cmd.c (77141dc6ceffdbf4dd3470911c838309e23cd55c) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * NVMe Fabrics command implementation. 3 * Copyright (c) 2015-2016 HGST, a Western Digital Company. | 2/* 3 * NVMe Fabrics command implementation. 4 * Copyright (c) 2015-2016 HGST, a Western Digital Company. |
4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. | |
13 */ 14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 15#include <linux/blkdev.h> 16#include "nvmet.h" 17 18static void nvmet_execute_prop_set(struct nvmet_req *req) 19{ 20 u64 val = le64_to_cpu(req->cmd->prop_set.value); --- 278 unchanged lines hidden --- | 5 */ 6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7#include <linux/blkdev.h> 8#include "nvmet.h" 9 10static void nvmet_execute_prop_set(struct nvmet_req *req) 11{ 12 u64 val = le64_to_cpu(req->cmd->prop_set.value); --- 278 unchanged lines hidden --- |