/******************************************************************************1* Interface to /dev/xen/xenbus_backend.2*3* Copyright (c) 2011 Bastian Blank <[email protected]>4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public License version 27* as published by the Free Software Foundation; or, when distributed8* separately from the Linux kernel or incorporated into other9* software packages, subject to the following license:10*11* Permission is hereby granted, free of charge, to any person obtaining a copy12* of this source file (the "Software"), to deal in the Software without13* restriction, including without limitation the rights to use, copy, modify,14* merge, publish, distribute, sublicense, and/or sell copies of the Software,15* and to permit persons to whom the Software is furnished to do so, subject to16* the following conditions:17*18* The above copyright notice and this permission notice shall be included in19* all copies or substantial portions of the Software.20*21* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR22* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,23* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE24* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER25* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING26* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS27* IN THE SOFTWARE.28*/2930#ifndef __LINUX_XEN_XENBUS_DEV_H__31#define __LINUX_XEN_XENBUS_DEV_H__3233#include <linux/ioctl.h>3435#define IOCTL_XENBUS_BACKEND_EVTCHN \36_IOC(_IOC_NONE, 'B', 0, 0)3738#define IOCTL_XENBUS_BACKEND_SETUP \39_IOC(_IOC_NONE, 'B', 1, 0)4041#endif /* __LINUX_XEN_XENBUS_DEV_H__ */424344