All of lore.kernel.org
 help / color / mirror / Atom feed
From: Luis Henriques <luis.henriques@canonical.com>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org,
	kernel-team@lists.ubuntu.com
Cc: David Vrabel <david.vrabel@citrix.com>,
	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
	Luis Henriques <luis.henriques@canonical.com>
Subject: [PATCH 3.11 096/121] xen: install xen/gntdev.h and xen/gntalloc.h
Date: Fri, 21 Feb 2014 12:48:40 +0000	[thread overview]
Message-ID: <1392986945-9693-97-git-send-email-luis.henriques@canonical.com> (raw)
In-Reply-To: <1392986945-9693-1-git-send-email-luis.henriques@canonical.com>

3.11.10.5 -stable review patch.  If anyone has any objections, please let me know.

------------------

From: David Vrabel <david.vrabel@citrix.com>

commit 564eb714f5f09ac733c26860d5f0831f213fbdf1 upstream.

xen/gntdev.h and xen/gntalloc.h both provide userspace ABIs so they
should be installed.

Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
---
 include/uapi/xen/Kbuild     |   2 +
 include/uapi/xen/gntalloc.h |  82 ++++++++++++++++++++++++
 include/uapi/xen/gntdev.h   | 150 ++++++++++++++++++++++++++++++++++++++++++++
 include/xen/gntalloc.h      |  82 ------------------------
 include/xen/gntdev.h        | 150 --------------------------------------------
 5 files changed, 234 insertions(+), 232 deletions(-)
 create mode 100644 include/uapi/xen/gntalloc.h
 create mode 100644 include/uapi/xen/gntdev.h
 delete mode 100644 include/xen/gntalloc.h
 delete mode 100644 include/xen/gntdev.h

diff --git a/include/uapi/xen/Kbuild b/include/uapi/xen/Kbuild
index 61257cb..5c45962 100644
--- a/include/uapi/xen/Kbuild
+++ b/include/uapi/xen/Kbuild
@@ -1,3 +1,5 @@
 # UAPI Header export list
 header-y += evtchn.h
+header-y += gntalloc.h
+header-y += gntdev.h
 header-y += privcmd.h
diff --git a/include/uapi/xen/gntalloc.h b/include/uapi/xen/gntalloc.h
new file mode 100644
index 0000000..76bd580
--- /dev/null
+++ b/include/uapi/xen/gntalloc.h
@@ -0,0 +1,82 @@
+/******************************************************************************
+ * gntalloc.h
+ *
+ * Interface to /dev/xen/gntalloc.
+ *
+ * Author: Daniel De Graaf <dgdegra@tycho.nsa.gov>
+ *
+ * This file is in the public domain.
+ */
+
+#ifndef __LINUX_PUBLIC_GNTALLOC_H__
+#define __LINUX_PUBLIC_GNTALLOC_H__
+
+/*
+ * Allocates a new page and creates a new grant reference.
+ */
+#define IOCTL_GNTALLOC_ALLOC_GREF \
+_IOC(_IOC_NONE, 'G', 5, sizeof(struct ioctl_gntalloc_alloc_gref))
+struct ioctl_gntalloc_alloc_gref {
+	/* IN parameters */
+	/* The ID of the domain to be given access to the grants. */
+	uint16_t domid;
+	/* Flags for this mapping */
+	uint16_t flags;
+	/* Number of pages to map */
+	uint32_t count;
+	/* OUT parameters */
+	/* The offset to be used on a subsequent call to mmap(). */
+	uint64_t index;
+	/* The grant references of the newly created grant, one per page */
+	/* Variable size, depending on count */
+	uint32_t gref_ids[1];
+};
+
+#define GNTALLOC_FLAG_WRITABLE 1
+
+/*
+ * Deallocates the grant reference, allowing the associated page to be freed if
+ * no other domains are using it.
+ */
+#define IOCTL_GNTALLOC_DEALLOC_GREF \
+_IOC(_IOC_NONE, 'G', 6, sizeof(struct ioctl_gntalloc_dealloc_gref))
+struct ioctl_gntalloc_dealloc_gref {
+	/* IN parameters */
+	/* The offset returned in the map operation */
+	uint64_t index;
+	/* Number of references to unmap */
+	uint32_t count;
+};
+
+/*
+ * Sets up an unmap notification within the page, so that the other side can do
+ * cleanup if this side crashes. Required to implement cross-domain robust
+ * mutexes or close notification on communication channels.
+ *
+ * Each mapped page only supports one notification; multiple calls referring to
+ * the same page overwrite the previous notification. You must clear the
+ * notification prior to the IOCTL_GNTALLOC_DEALLOC_GREF if you do not want it
+ * to occur.
+ */
+#define IOCTL_GNTALLOC_SET_UNMAP_NOTIFY \
+_IOC(_IOC_NONE, 'G', 7, sizeof(struct ioctl_gntalloc_unmap_notify))
+struct ioctl_gntalloc_unmap_notify {
+	/* IN parameters */
+	/* Offset in the file descriptor for a byte within the page (same as
+	 * used in mmap). If using UNMAP_NOTIFY_CLEAR_BYTE, this is the byte to
+	 * be cleared. Otherwise, it can be any byte in the page whose
+	 * notification we are adjusting.
+	 */
+	uint64_t index;
+	/* Action(s) to take on unmap */
+	uint32_t action;
+	/* Event channel to notify */
+	uint32_t event_channel_port;
+};
+
+/* Clear (set to zero) the byte specified by index */
+#define UNMAP_NOTIFY_CLEAR_BYTE 0x1
+/* Send an interrupt on the indicated event channel */
+#define UNMAP_NOTIFY_SEND_EVENT 0x2
+
+#endif /* __LINUX_PUBLIC_GNTALLOC_H__ */
diff --git a/include/uapi/xen/gntdev.h b/include/uapi/xen/gntdev.h
new file mode 100644
index 0000000..5304bd3
--- /dev/null
+++ b/include/uapi/xen/gntdev.h
@@ -0,0 +1,150 @@
+/******************************************************************************
+ * gntdev.h
+ * 
+ * Interface to /dev/xen/gntdev.
+ * 
+ * Copyright (c) 2007, D G Murray
+ * 
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation; or, when distributed
+ * separately from the Linux kernel or incorporated into other
+ * software packages, subject to the following license:
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this source file (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy, modify,
+ * merge, publish, distribute, sublicense, and/or sell copies of the Software,
+ * and to permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ * 
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ * 
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#ifndef __LINUX_PUBLIC_GNTDEV_H__
+#define __LINUX_PUBLIC_GNTDEV_H__
+
+struct ioctl_gntdev_grant_ref {
+	/* The domain ID of the grant to be mapped. */
+	uint32_t domid;
+	/* The grant reference of the grant to be mapped. */
+	uint32_t ref;
+};
+
+/*
+ * Inserts the grant references into the mapping table of an instance
+ * of gntdev. N.B. This does not perform the mapping, which is deferred
+ * until mmap() is called with @index as the offset.
+ */
+#define IOCTL_GNTDEV_MAP_GRANT_REF \
+_IOC(_IOC_NONE, 'G', 0, sizeof(struct ioctl_gntdev_map_grant_ref))
+struct ioctl_gntdev_map_grant_ref {
+	/* IN parameters */
+	/* The number of grants to be mapped. */
+	uint32_t count;
+	uint32_t pad;
+	/* OUT parameters */
+	/* The offset to be used on a subsequent call to mmap(). */
+	uint64_t index;
+	/* Variable IN parameter. */
+	/* Array of grant references, of size @count. */
+	struct ioctl_gntdev_grant_ref refs[1];
+};
+
+/*
+ * Removes the grant references from the mapping table of an instance of
+ * of gntdev. N.B. munmap() must be called on the relevant virtual address(es)
+ * before this ioctl is called, or an error will result.
+ */
+#define IOCTL_GNTDEV_UNMAP_GRANT_REF \
+_IOC(_IOC_NONE, 'G', 1, sizeof(struct ioctl_gntdev_unmap_grant_ref))
+struct ioctl_gntdev_unmap_grant_ref {
+	/* IN parameters */
+	/* The offset was returned by the corresponding map operation. */
+	uint64_t index;
+	/* The number of pages to be unmapped. */
+	uint32_t count;
+	uint32_t pad;
+};
+
+/*
+ * Returns the offset in the driver's address space that corresponds
+ * to @vaddr. This can be used to perform a munmap(), followed by an
+ * UNMAP_GRANT_REF ioctl, where no state about the offset is retained by
+ * the caller. The number of pages that were allocated at the same time as
+ * @vaddr is returned in @count.
+ *
+ * N.B. Where more than one page has been mapped into a contiguous range, the
+ *      supplied @vaddr must correspond to the start of the range; otherwise
+ *      an error will result. It is only possible to munmap() the entire
+ *      contiguously-allocated range at once, and not any subrange thereof.
+ */
+#define IOCTL_GNTDEV_GET_OFFSET_FOR_VADDR \
+_IOC(_IOC_NONE, 'G', 2, sizeof(struct ioctl_gntdev_get_offset_for_vaddr))
+struct ioctl_gntdev_get_offset_for_vaddr {
+	/* IN parameters */
+	/* The virtual address of the first mapped page in a range. */
+	uint64_t vaddr;
+	/* OUT parameters */
+	/* The offset that was used in the initial mmap() operation. */
+	uint64_t offset;
+	/* The number of pages mapped in the VM area that begins at @vaddr. */
+	uint32_t count;
+	uint32_t pad;
+};
+
+/*
+ * Sets the maximum number of grants that may mapped at once by this gntdev
+ * instance.
+ *
+ * N.B. This must be called before any other ioctl is performed on the device.
+ */
+#define IOCTL_GNTDEV_SET_MAX_GRANTS \
+_IOC(_IOC_NONE, 'G', 3, sizeof(struct ioctl_gntdev_set_max_grants))
+struct ioctl_gntdev_set_max_grants {
+	/* IN parameter */
+	/* The maximum number of grants that may be mapped at once. */
+	uint32_t count;
+};
+
+/*
+ * Sets up an unmap notification within the page, so that the other side can do
+ * cleanup if this side crashes. Required to implement cross-domain robust
+ * mutexes or close notification on communication channels.
+ *
+ * Each mapped page only supports one notification; multiple calls referring to
+ * the same page overwrite the previous notification. You must clear the
+ * notification prior to the IOCTL_GNTALLOC_DEALLOC_GREF if you do not want it
+ * to occur.
+ */
+#define IOCTL_GNTDEV_SET_UNMAP_NOTIFY \
+_IOC(_IOC_NONE, 'G', 7, sizeof(struct ioctl_gntdev_unmap_notify))
+struct ioctl_gntdev_unmap_notify {
+	/* IN parameters */
+	/* Offset in the file descriptor for a byte within the page (same as
+	 * used in mmap). If using UNMAP_NOTIFY_CLEAR_BYTE, this is the byte to
+	 * be cleared. Otherwise, it can be any byte in the page whose
+	 * notification we are adjusting.
+	 */
+	uint64_t index;
+	/* Action(s) to take on unmap */
+	uint32_t action;
+	/* Event channel to notify */
+	uint32_t event_channel_port;
+};
+
+/* Clear (set to zero) the byte specified by index */
+#define UNMAP_NOTIFY_CLEAR_BYTE 0x1
+/* Send an interrupt on the indicated event channel */
+#define UNMAP_NOTIFY_SEND_EVENT 0x2
+
+#endif /* __LINUX_PUBLIC_GNTDEV_H__ */
diff --git a/include/xen/gntalloc.h b/include/xen/gntalloc.h
deleted file mode 100644
index 76bd580..0000000
--- a/include/xen/gntalloc.h
+++ /dev/null
@@ -1,82 +0,0 @@
-/******************************************************************************
- * gntalloc.h
- *
- * Interface to /dev/xen/gntalloc.
- *
- * Author: Daniel De Graaf <dgdegra@tycho.nsa.gov>
- *
- * This file is in the public domain.
- */
-
-#ifndef __LINUX_PUBLIC_GNTALLOC_H__
-#define __LINUX_PUBLIC_GNTALLOC_H__
-
-/*
- * Allocates a new page and creates a new grant reference.
- */
-#define IOCTL_GNTALLOC_ALLOC_GREF \
-_IOC(_IOC_NONE, 'G', 5, sizeof(struct ioctl_gntalloc_alloc_gref))
-struct ioctl_gntalloc_alloc_gref {
-	/* IN parameters */
-	/* The ID of the domain to be given access to the grants. */
-	uint16_t domid;
-	/* Flags for this mapping */
-	uint16_t flags;
-	/* Number of pages to map */
-	uint32_t count;
-	/* OUT parameters */
-	/* The offset to be used on a subsequent call to mmap(). */
-	uint64_t index;
-	/* The grant references of the newly created grant, one per page */
-	/* Variable size, depending on count */
-	uint32_t gref_ids[1];
-};
-
-#define GNTALLOC_FLAG_WRITABLE 1
-
-/*
- * Deallocates the grant reference, allowing the associated page to be freed if
- * no other domains are using it.
- */
-#define IOCTL_GNTALLOC_DEALLOC_GREF \
-_IOC(_IOC_NONE, 'G', 6, sizeof(struct ioctl_gntalloc_dealloc_gref))
-struct ioctl_gntalloc_dealloc_gref {
-	/* IN parameters */
-	/* The offset returned in the map operation */
-	uint64_t index;
-	/* Number of references to unmap */
-	uint32_t count;
-};
-
-/*
- * Sets up an unmap notification within the page, so that the other side can do
- * cleanup if this side crashes. Required to implement cross-domain robust
- * mutexes or close notification on communication channels.
- *
- * Each mapped page only supports one notification; multiple calls referring to
- * the same page overwrite the previous notification. You must clear the
- * notification prior to the IOCTL_GNTALLOC_DEALLOC_GREF if you do not want it
- * to occur.
- */
-#define IOCTL_GNTALLOC_SET_UNMAP_NOTIFY \
-_IOC(_IOC_NONE, 'G', 7, sizeof(struct ioctl_gntalloc_unmap_notify))
-struct ioctl_gntalloc_unmap_notify {
-	/* IN parameters */
-	/* Offset in the file descriptor for a byte within the page (same as
-	 * used in mmap). If using UNMAP_NOTIFY_CLEAR_BYTE, this is the byte to
-	 * be cleared. Otherwise, it can be any byte in the page whose
-	 * notification we are adjusting.
-	 */
-	uint64_t index;
-	/* Action(s) to take on unmap */
-	uint32_t action;
-	/* Event channel to notify */
-	uint32_t event_channel_port;
-};
-
-/* Clear (set to zero) the byte specified by index */
-#define UNMAP_NOTIFY_CLEAR_BYTE 0x1
-/* Send an interrupt on the indicated event channel */
-#define UNMAP_NOTIFY_SEND_EVENT 0x2
-
-#endif /* __LINUX_PUBLIC_GNTALLOC_H__ */
diff --git a/include/xen/gntdev.h b/include/xen/gntdev.h
deleted file mode 100644
index 5304bd3..0000000
--- a/include/xen/gntdev.h
+++ /dev/null
@@ -1,150 +0,0 @@
-/******************************************************************************
- * gntdev.h
- * 
- * Interface to /dev/xen/gntdev.
- * 
- * Copyright (c) 2007, D G Murray
- * 
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation; or, when distributed
- * separately from the Linux kernel or incorporated into other
- * software packages, subject to the following license:
- * 
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this source file (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy, modify,
- * merge, publish, distribute, sublicense, and/or sell copies of the Software,
- * and to permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- * 
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * 
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
-
-#ifndef __LINUX_PUBLIC_GNTDEV_H__
-#define __LINUX_PUBLIC_GNTDEV_H__
-
-struct ioctl_gntdev_grant_ref {
-	/* The domain ID of the grant to be mapped. */
-	uint32_t domid;
-	/* The grant reference of the grant to be mapped. */
-	uint32_t ref;
-};
-
-/*
- * Inserts the grant references into the mapping table of an instance
- * of gntdev. N.B. This does not perform the mapping, which is deferred
- * until mmap() is called with @index as the offset.
- */
-#define IOCTL_GNTDEV_MAP_GRANT_REF \
-_IOC(_IOC_NONE, 'G', 0, sizeof(struct ioctl_gntdev_map_grant_ref))
-struct ioctl_gntdev_map_grant_ref {
-	/* IN parameters */
-	/* The number of grants to be mapped. */
-	uint32_t count;
-	uint32_t pad;
-	/* OUT parameters */
-	/* The offset to be used on a subsequent call to mmap(). */
-	uint64_t index;
-	/* Variable IN parameter. */
-	/* Array of grant references, of size @count. */
-	struct ioctl_gntdev_grant_ref refs[1];
-};
-
-/*
- * Removes the grant references from the mapping table of an instance of
- * of gntdev. N.B. munmap() must be called on the relevant virtual address(es)
- * before this ioctl is called, or an error will result.
- */
-#define IOCTL_GNTDEV_UNMAP_GRANT_REF \
-_IOC(_IOC_NONE, 'G', 1, sizeof(struct ioctl_gntdev_unmap_grant_ref))
-struct ioctl_gntdev_unmap_grant_ref {
-	/* IN parameters */
-	/* The offset was returned by the corresponding map operation. */
-	uint64_t index;
-	/* The number of pages to be unmapped. */
-	uint32_t count;
-	uint32_t pad;
-};
-
-/*
- * Returns the offset in the driver's address space that corresponds
- * to @vaddr. This can be used to perform a munmap(), followed by an
- * UNMAP_GRANT_REF ioctl, where no state about the offset is retained by
- * the caller. The number of pages that were allocated at the same time as
- * @vaddr is returned in @count.
- *
- * N.B. Where more than one page has been mapped into a contiguous range, the
- *      supplied @vaddr must correspond to the start of the range; otherwise
- *      an error will result. It is only possible to munmap() the entire
- *      contiguously-allocated range at once, and not any subrange thereof.
- */
-#define IOCTL_GNTDEV_GET_OFFSET_FOR_VADDR \
-_IOC(_IOC_NONE, 'G', 2, sizeof(struct ioctl_gntdev_get_offset_for_vaddr))
-struct ioctl_gntdev_get_offset_for_vaddr {
-	/* IN parameters */
-	/* The virtual address of the first mapped page in a range. */
-	uint64_t vaddr;
-	/* OUT parameters */
-	/* The offset that was used in the initial mmap() operation. */
-	uint64_t offset;
-	/* The number of pages mapped in the VM area that begins at @vaddr. */
-	uint32_t count;
-	uint32_t pad;
-};
-
-/*
- * Sets the maximum number of grants that may mapped at once by this gntdev
- * instance.
- *
- * N.B. This must be called before any other ioctl is performed on the device.
- */
-#define IOCTL_GNTDEV_SET_MAX_GRANTS \
-_IOC(_IOC_NONE, 'G', 3, sizeof(struct ioctl_gntdev_set_max_grants))
-struct ioctl_gntdev_set_max_grants {
-	/* IN parameter */
-	/* The maximum number of grants that may be mapped at once. */
-	uint32_t count;
-};
-
-/*
- * Sets up an unmap notification within the page, so that the other side can do
- * cleanup if this side crashes. Required to implement cross-domain robust
- * mutexes or close notification on communication channels.
- *
- * Each mapped page only supports one notification; multiple calls referring to
- * the same page overwrite the previous notification. You must clear the
- * notification prior to the IOCTL_GNTALLOC_DEALLOC_GREF if you do not want it
- * to occur.
- */
-#define IOCTL_GNTDEV_SET_UNMAP_NOTIFY \
-_IOC(_IOC_NONE, 'G', 7, sizeof(struct ioctl_gntdev_unmap_notify))
-struct ioctl_gntdev_unmap_notify {
-	/* IN parameters */
-	/* Offset in the file descriptor for a byte within the page (same as
-	 * used in mmap). If using UNMAP_NOTIFY_CLEAR_BYTE, this is the byte to
-	 * be cleared. Otherwise, it can be any byte in the page whose
-	 * notification we are adjusting.
-	 */
-	uint64_t index;
-	/* Action(s) to take on unmap */
-	uint32_t action;
-	/* Event channel to notify */
-	uint32_t event_channel_port;
-};
-
-/* Clear (set to zero) the byte specified by index */
-#define UNMAP_NOTIFY_CLEAR_BYTE 0x1
-/* Send an interrupt on the indicated event channel */
-#define UNMAP_NOTIFY_SEND_EVENT 0x2
-
-#endif /* __LINUX_PUBLIC_GNTDEV_H__ */
-- 
1.9.0


  parent reply	other threads:[~2014-02-21 13:00 UTC|newest]

Thread overview: 131+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-21 12:47 [3.11.y.z extended stable] Linux 3.11.10.5 stable review Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 001/121] ftrace: Synchronize setting function_trace_op with ftrace_trace_function Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 002/121] ftrace: Have function graph only trace based on global_ops filters Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 003/121] irqchip: armada-370-xp: fix IPI race condition Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 004/121] crypto: s390 - fix concurrency issue in aes-ctr mode Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 005/121] crypto: s390 - fix des and des3_ede cbc concurrency issue Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 006/121] crypto: s390 - fix des and des3_ede ctr " Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 007/121] pinctrl: vt8500: Change devicetree data parsing Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 008/121] ALSA: usb-audio: Add missing kconfig dependecy Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 009/121] Btrfs: disable snapshot aware defrag for now Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 010/121] ALSA: hda - Fix silent output on Toshiba Satellite L40 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 011/121] [media] Revert "[media] videobuf_vm_{open,close} race fixes" Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 012/121] [media] mxl111sf: Fix unintentional garbage stack read Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 013/121] [media] mxl111sf: Fix compile when CONFIG_DVB_USB_MXL111SF is unset Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 014/121] [media] af9035: add ID [2040:f900] Hauppauge WinTV-MiniStick 2 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 015/121] arm64: vdso: prevent ld from aligning PT_LOAD segments to 64k Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 016/121] intel_pstate: Add Haswell CPU models Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 017/121] intel_pstate: Improve accuracy by not truncating until final result Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 018/121] intel_pstate: Correct calculation of min pstate value Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 019/121] pinctrl: protect pinctrl_list add Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 020/121] drm/mgag200: fix typo causing bw limits to be ignored on some chips Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 021/121] ALSA: hda - Add missing mixer widget for AD1983 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 022/121] ALSA: hda - Fix missing VREF setup for Mac Pro 1,1 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 023/121] drm/vmwgfx: Fix regression caused by "drm/ttm: make ttm reservation calls behave like reservation calls" Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 024/121] ALSA: hda - Improve loopback path lookups for AD1983 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 025/121] genirq: Generic irq chip requires IRQ_DOMAIN Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 026/121] arm64: add DSB after icache flush in __flush_icache_all() Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 027/121] arm64: Invalidate the TLB when replacing pmd entries during boot Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 028/121] arm64: vdso: fix coarse clock handling Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 029/121] arm64: vdso: update wtm fields for CLOCK_MONOTONIC_COARSE Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 030/121] SELinux: Fix kernel BUG on empty security contexts Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 031/121] drm/mgag200,ast,cirrus: fix regression with drm_can_sleep conversion Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 032/121] pinctrl: do not init debugfs entries for unimplemented functionalities Luis Henriques
2014-02-21 12:59   ` Florian Vaussard
2014-02-24 10:01     ` Luís Henriques
2014-02-24 10:01       ` Luís Henriques
2014-02-21 12:47 ` [PATCH 3.11 033/121] x86, hweight: Fix BUG when booting with CONFIG_GCOV_PROFILE_ALL=y Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 034/121] mm/swap: fix race on swap_info reuse between swapoff and swapon Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 035/121] mm: __set_page_dirty_nobuffers() uses spin_lock_irqsave() instead of spin_lock_irq() Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 036/121] mm: __set_page_dirty uses spin_lock_irqsave instead of spin_lock_irq Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 037/121] tile: remove compat_sys_lookup_dcookie declaration to fix compile error Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 038/121] timekeeping: Fix lost updates to tai adjustment Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 039/121] timekeeping: Fix potential lost pv notification of time change Luis Henriques
2014-02-21 12:47 ` Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 040/121] timekeeping: Avoid possible deadlock from clock_was_set_delayed Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 041/121] timekeeping: Fix clock_set/clock_was_set think-o Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 042/121] timekeeping: Fix CLOCK_TAI timer/nanosleep delays Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 043/121] timekeeping: Fix missing timekeeping_update in suspend path Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 044/121] rtc-cmos: Add an alarm disable quirk Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 045/121] 9p/trans_virtio.c: Fix broken zero-copy on vmalloc() buffers Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 046/121] staging:iio:ad799x fix error_free_irq which was freeing an irq that may not have been requested Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 047/121] xhci: Fix resume issues on Renesas chips in Samsung laptops Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 048/121] Revert "usbcore: set lpm_capable field for LPM capable root hubs" Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 049/121] KVM: return an error code in kvm_vm_ioctl_register_coalesced_mmio() Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 050/121] iwlwifi: mvm: print the version of the firmware when it asserts Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 051/121] block: __elv_next_request() shouldn't call into the elevator if bypassing Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 052/121] power: max17040: Fix NULL pointer dereference when there is no platform_data Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 053/121] iwlwifi: mvm: BT Coex - disable BT when TXing probe request in scan Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 054/121] iwlwifi: mvm: don't allow A band if SKU forbids it Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 055/121] s390/dump: Fix dump memory detection Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 056/121] ath9k_htc: make ->sta_rc_update atomic for most calls Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 057/121] ath9k_htc: Do not support PowerSave by default Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 058/121] ar5523: fix usb id for Gigaset Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 059/121] ath9k: Do not support PowerSave by default Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 060/121] spi: nuc900: Set SPI_LSB_FIRST for master->mode_bits if hw->pdata->lsb is true Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 061/121] usb: ftdi_sio: add Mindstorms EV3 console adapter Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 062/121] usb-storage: restrict bcdDevice range for Super Top in Cypress ATACB Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 063/121] usb-storage: add unusual-devs entry for BlackBerry 9000 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 064/121] usb-storage: enable multi-LUN scanning when needed Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 065/121] md/raid1: restore ability for check and repair to fix read errors Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 066/121] of: fix PCI bus match for PCIe slots Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 067/121] usb: qcserial: add Netgear Aircard 340U Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 068/121] USB: ftdi_sio: add Tagsys RFID Reader IDs Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 069/121] mac80211: move roc cookie assignment earlier Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 070/121] nl80211: Reset split_start when netlink skb is exhausted Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 071/121] mac80211: release the channel in error path in start_ap Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 072/121] mac80211: fix fragmentation code, particularly for encryption Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 073/121] time: Fix overflow when HZ is smaller than 60 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 074/121] drm/radeon: fix UVD IRQ support on SI Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 075/121] drm/radeon: fix UVD IRQ support on 7xx Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 076/121] ALSA: hda - Add a headset quirk for Dell XPS 13 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 077/121] ALSA: hda - Fix mic capture on Sony VAIO Pro 11 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 078/121] mei: clear write cb from waiting list on reset Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 079/121] mei: don't unset read cb ptr " Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 080/121] VME: Correct read/write alignment algorithm Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 081/121] Drivers: hv: vmbus: Specify the target CPU that should receive notification Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 082/121] Drivers: hv: vmbus: Don't timeout during the initial connection with host Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 083/121] raw: test against runtime value of max_raw_minors Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 084/121] tty: n_gsm: Fix for modems with brk in modem status control Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 085/121] tty: Set correct tty name in 'active' sysfs attribute Luis Henriques
2014-02-21 14:37   ` Ray Strode
2014-02-21 14:46     ` Josh Boyer
2014-02-21 20:09       ` David Herrmann
2014-02-24  9:54         ` Luís Henriques
2014-02-24  9:54           ` Luís Henriques
2014-02-21 12:48 ` [PATCH 3.11 086/121] staging: comedi: adv_pci1710: fix analog output readback value Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 087/121] xen-blkfront: handle backend CLOSED without CLOSING Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 088/121] Modpost: fixed USB alias generation for ranges including 0x9 and 0xA Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 089/121] block: Fix nr_vecs for inline integrity vectors Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 090/121] iio: ak8975: Fix calculation formula for convert micro tesla to gauss unit Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 091/121] iio: adis16400: Set timestamp as the last element in chan_spec Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 092/121] fs/file.c:fdtable: avoid triggering OOMs from alloc_fdmem Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 093/121] mm: fix page leak at nfs_symlink() Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 094/121] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 095/121] genirq: Add missing irq_to_desc export for CONFIG_SPARSE_IRQ=n Luis Henriques
2014-02-21 12:48 ` Luis Henriques [this message]
2014-02-21 12:48 ` [PATCH 3.11 097/121] ring-buffer: Fix first commit on sub-buffer having non-zero delta Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 098/121] usb: option: blacklist ZTE MF667 net interface Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 099/121] ftrace/x86: Use breakpoints for converting function graph caller Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 100/121] block: add cond_resched() to potentially long running ioctl discard loop Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 101/121] target: Fix free-after-use regression in PR unregister Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 102/121] md/raid5: Fix CPU hotplug callback registration Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 103/121] compiler/gcc4: Make quirk for asm_volatile_goto() unconditional Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 104/121] x86, smap: Don't enable SMAP if CONFIG_X86_SMAP is disabled Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 105/121] x86, smap: smap_violation() is bogus if CONFIG_X86_SMAP is off Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 106/121] vt: Fix secure clear screen Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 107/121] lockd: send correct lock when granting a delayed lock Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 108/121] tick: Clear broadcast pending bit when switching to oneshot Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 109/121] IB/qib: Add missing serdes init sequence Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 110/121] hwmon: (ntc_thermistor) Avoid math overflow Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 111/121] x86: mm: change tlb_flushall_shift for IvyBridge Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 112/121] xen/p2m: check MFN is in range before using the m2p table Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 113/121] xen: Fix possible user space selector corruption Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 114/121] [CIFS] Fix SMB2 mounts so they don't try to set or get xattrs via cifs Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 115/121] Add protocol specific operation for CIFS xattrs Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 116/121] retrieving CIFS ACLs when mounted with SMB2 fails dropping session Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 117/121] s390: fix kernel crash due to linkage stack instructions Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 118/121] EDAC: Replace strict_strtol() with kstrtol() Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 119/121] drivers/edac/edac_mc_sysfs.c: poll timeout cannot be zero Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 120/121] EDAC: Poll timeout cannot be zero, p2 Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 121/121] EDAC: Correct workqueue setup path Luis Henriques

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1392986945-9693-97-git-send-email-luis.henriques@canonical.com \
    --to=luis.henriques@canonical.com \
    --cc=david.vrabel@citrix.com \
    --cc=kernel-team@lists.ubuntu.com \
    --cc=konrad.wilk@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.