aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-09 14:44:13 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-09 14:44:13 -0700
commit3686af12e2a752e4e8bf3288e45fc600acecfae7 (patch)
tree27e36db2719e0da92e3f90b49020ed889616f787
parent16dfea5d8528f5ae8137306ff9e1d637946696d4 (diff)
downloadpatches-3686af12e2a752e4e8bf3288e45fc600acecfae7.tar.gz
started to document the f??.patch files
-rw-r--r--f01.patch17
-rw-r--r--f02.patch12
-rw-r--r--f03.patch12
-rw-r--r--f04.patch11
-rw-r--r--f05.patch12
-rw-r--r--f06.patch12
-rw-r--r--f07.patch14
-rw-r--r--f08.patch13
-rw-r--r--f09.patch9
-rw-r--r--f10.patch4
-rw-r--r--f11.patch4
-rw-r--r--f12.patch4
-rw-r--r--f13.patch4
13 files changed, 128 insertions, 0 deletions
diff --git a/f01.patch b/f01.patch
index cb285aa67315cb..141bc857968b3e 100644
--- a/f01.patch
+++ b/f01.patch
@@ -1,3 +1,20 @@
+From foo@baz Mon Sep 9 14:28:31 PDT 2013
+Date: Mon, 09 Sep 2013 14:28:31 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: use dev_groups for device attributes
+
+This patch is the first in a series that moves the hv bus code to use the
+dev_groups field instead of dev_attrs, as dev_attrs is going away in future
+kernel releases.
+
+It moves the id sysfs file to the dev_groups structure, and creates the needed
+show/store functions, instead of relying on one "universal" function for this.
+By doing this, it removes the need for this to be in a temporary structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 1 -
drivers/hv/vmbus_drv.c | 23 ++++++++++++++++++-----
diff --git a/f02.patch b/f02.patch
index dfa1cb0854bab8..8b77dbbbc24650 100644
--- a/f02.patch
+++ b/f02.patch
@@ -1,3 +1,15 @@
+From foo@baz Mon Sep 9 14:31:19 PDT 2013
+Date: Mon, 09 Sep 2013 14:31:19 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: move "state" bus attribute to dev_groups
+
+This moves the "state" bus attribute to the dev_groups structure,
+removing the need for it to be in a temporary structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 1 -
drivers/hv/vmbus_drv.c | 17 ++++++++++++-----
diff --git a/f03.patch b/f03.patch
index a2720f574d4966..ba76e2ca7a2de0 100644
--- a/f03.patch
+++ b/f03.patch
@@ -1,3 +1,15 @@
+From foo@baz Mon Sep 9 14:31:30 PDT 2013
+Date: Mon, 09 Sep 2013 14:31:30 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: move "monitor_id" bus attribute to dev_groups
+
+This moves the "state" bus attribute to the dev_groups structure,
+removing the need for it to be in a temporary structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 2 --
drivers/hv/vmbus_drv.c | 18 ++++++++++++------
diff --git a/f04.patch b/f04.patch
index 706af61fa2a1ab..1043a9efb953d9 100644
--- a/f04.patch
+++ b/f04.patch
@@ -1,3 +1,14 @@
+From foo@baz Mon Sep 9 14:34:18 PDT 2013
+Date: Mon, 09 Sep 2013 14:34:18 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: move "modalias" bus attribute to dev_groups
+
+This moves the "state" bus attribute to the dev_groups structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/vmbus_drv.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/f05.patch b/f05.patch
index f77e0239e38971..3fcfdec558aa8b 100644
--- a/f05.patch
+++ b/f05.patch
@@ -1,3 +1,15 @@
+From foo@baz Mon Sep 9 14:35:13 PDT 2013
+Date: Mon, 09 Sep 2013 14:35:13 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: move "class_id" bus attribute to dev_groups
+
+This moves the "class_id" bus attribute to the dev_groups structure,
+removing the need for it to be in a temporary structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 2 --
drivers/hv/vmbus_drv.c | 22 +++++++++++++++-------
diff --git a/f06.patch b/f06.patch
index 1140c4aee2e17e..1648353b41bbe9 100644
--- a/f06.patch
+++ b/f06.patch
@@ -1,3 +1,15 @@
+From foo@baz Mon Sep 9 14:36:02 PDT 2013
+Date: Mon, 09 Sep 2013 14:36:02 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: move "device_id" bus attribute to dev_groups
+
+This moves the "device_id" bus attribute to the dev_groups structure,
+removing the need for it to be in a temporary structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 4 ----
drivers/hv/vmbus_drv.c | 24 ++++++++++++++----------
diff --git a/f07.patch b/f07.patch
index 4deced3d2168e0..5bac79530350b4 100644
--- a/f07.patch
+++ b/f07.patch
@@ -1,3 +1,17 @@
+From foo@baz Mon Sep 9 14:36:31 PDT 2013
+Date: Mon, 09 Sep 2013 14:36:31 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: make "monitor_pages" a "real" pointer array
+
+monitor_pages was a void pointer, containing an unknown number of arrays that
+we just "knew" were a child and parent array of a specific size. Instead of
+that implicit knowledge, let's make them a real pointer, allowing us to have
+type safety, and a semblance of sane addressing schemes.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 10 ++++------
drivers/hv/connection.c | 21 ++++++++++-----------
diff --git a/f08.patch b/f08.patch
index 4b356a194b0739..cae0173c15be61 100644
--- a/f08.patch
+++ b/f08.patch
@@ -1,3 +1,16 @@
+From foo@baz Mon Sep 9 14:40:42 PDT 2013
+Date: Mon, 09 Sep 2013 14:40:42 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject: hv: move "client/server_monitor_pending" bus attributes to dev_groups
+
+This moves the "client_monitor_pending" and "server_monitor_pending" bus
+attributes to the dev_groups structure, removing the need for it to be in a
+temporary structure.
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 4 ---
drivers/hv/vmbus_drv.c | 56 ++++++++++++++++++++++++++++++++++++++++---------
diff --git a/f09.patch b/f09.patch
index d6d3bf8cb734a1..bcce69e4cf33a2 100644
--- a/f09.patch
+++ b/f09.patch
@@ -1,3 +1,12 @@
+From foo@baz Mon Sep 9 14:41:49 PDT 2013
+Date: Mon, 09 Sep 2013 14:41:49 -0700
+To: Greg KH <gregkh@linuxfoundation.org>
+From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+Subject:
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 4 ----
drivers/hv/vmbus_drv.c | 48 ++++++++++++++++++++++++++++++++++++++----------
diff --git a/f10.patch b/f10.patch
index fbec91955f004f..687163c0f37242 100644
--- a/f10.patch
+++ b/f10.patch
@@ -1,3 +1,7 @@
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 14 ------------
drivers/hv/vmbus_drv.c | 55 +++++++++++++++++++++++++++++++++----------------
diff --git a/f11.patch b/f11.patch
index c0727f56f70fc4..15e1dc0652656a 100644
--- a/f11.patch
+++ b/f11.patch
@@ -1,3 +1,7 @@
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/channel.c | 10 ----------
drivers/hv/vmbus_drv.c | 31 ++++++++++++++-----------------
diff --git a/f12.patch b/f12.patch
index 415f8f72ea2b79..537b96463870fe 100644
--- a/f12.patch
+++ b/f12.patch
@@ -1,3 +1,7 @@
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/hyperv_vmbus.h | 7 +++++++
drivers/hv/vmbus_drv.c | 35 ++++++++++-------------------------
diff --git a/f13.patch b/f13.patch
index b99e9601acee35..cbe3ecada4ea7a 100644
--- a/f13.patch
+++ b/f13.patch
@@ -1,3 +1,7 @@
+
+Cc: "K. Y. Srinivasan" <kys@microsoft.com>
+Cc: Haiyang Zhang <haiyangz@microsoft.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/hv/vmbus_drv.c | 230 +++++++++++++++++++++++++++++++------------------
1 file changed, 146 insertions(+), 84 deletions(-)