ring_buffer.c (860dbce3d8dd90cb9e909c58fa79808766243651) | ring_buffer.c (3b20eb23724d493eca79f02b1e062bd5432e29d0) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only |
|
1/* 2 * 3 * Copyright (c) 2009, Microsoft Corporation. 4 * | 2/* 3 * 4 * Copyright (c) 2009, Microsoft Corporation. 5 * |
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 * You should have received a copy of the GNU General Public License along with 15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple 16 * Place - Suite 330, Boston, MA 02111-1307 USA. 17 * | |
18 * Authors: 19 * Haiyang Zhang <haiyangz@microsoft.com> 20 * Hank Janssen <hjanssen@microsoft.com> 21 * K. Y. Srinivasan <kys@microsoft.com> | 6 * Authors: 7 * Haiyang Zhang <haiyangz@microsoft.com> 8 * Hank Janssen <hjanssen@microsoft.com> 9 * K. Y. Srinivasan <kys@microsoft.com> |
22 * | |
23 */ 24#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 25 26#include <linux/kernel.h> 27#include <linux/mm.h> 28#include <linux/hyperv.h> 29#include <linux/uio.h> 30#include <linux/vmalloc.h> --- 531 unchanged lines hidden --- | 10 */ 11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 12 13#include <linux/kernel.h> 14#include <linux/mm.h> 15#include <linux/hyperv.h> 16#include <linux/uio.h> 17#include <linux/vmalloc.h> --- 531 unchanged lines hidden --- |