admin-cmd.c (82ffd0454bd9bd57780966d47bfd56d579dd4fb3) | admin-cmd.c (77141dc6ceffdbf4dd3470911c838309e23cd55c) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * NVMe admin command implementation. 3 * Copyright (c) 2015-2016 HGST, a Western Digital Company. | 2/* 3 * NVMe admin 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/module.h> 16#include <linux/rculist.h> 17 18#include <generated/utsrelease.h> 19#include <asm/unaligned.h> 20#include "nvmet.h" --- 874 unchanged lines hidden --- | 5 */ 6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7#include <linux/module.h> 8#include <linux/rculist.h> 9 10#include <generated/utsrelease.h> 11#include <asm/unaligned.h> 12#include "nvmet.h" --- 874 unchanged lines hidden --- |