aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/iscsi-target/iscsi-target-svnr373.patch
blob: f1ec5064f2158c792251cd1b404b209dbc18d216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Index: trunk/kernel/conn.c
===================================================================
--- trunk/kernel/conn.c	(revision 372)
+++ trunk/kernel/conn.c	(revision 373)
@@ -44,7 +44,7 @@
 		switch (sk->sk_family) {
 		case AF_INET:
 			snprintf(buf, sizeof(buf),
-				 "%u.%u.%u.%u", NIPQUAD(inet_sk(sk)->inet_daddr));
+				 "%pI4", inet_sk(sk)->inet_daddr);
 			break;
 		case AF_INET6:
 			snprintf(buf, sizeof(buf), "[%pI6]",
Index: trunk/patches/compat-2.6.33-2.6.35.patch
===================================================================
--- trunk/patches/compat-2.6.33-2.6.35.patch	(revision 0)
+++ trunk/patches/compat-2.6.33-2.6.35.patch	(revision 373)
@@ -0,0 +1,13 @@
+diff --git b/kernel/conn.c a/kernel/conn.c
+index c7b8ea1..ec6dada 100644
+--- b/kernel/conn.c
++++ a/kernel/conn.c
+@@ -44,7 +44,7 @@ void conn_info_show(struct seq_file *seq, struct iscsi_session *session)
+ 		switch (sk->sk_family) {
+ 		case AF_INET:
+ 			snprintf(buf, sizeof(buf),
+-				 "%pI4", inet_sk(sk)->inet_daddr);
++				 "%u.%u.%u.%u", NIPQUAD(inet_sk(sk)->inet_daddr));
+ 			break;
+ 		case AF_INET6:
+ 			snprintf(buf, sizeof(buf), "[%pI6]",
Index: trunk/Makefile
===================================================================
--- trunk/Makefile	(revision 372)
+++ trunk/Makefile	(revision 373)
@@ -56,6 +56,11 @@
 # base first the earlier patch sets will not need to be modified.
 #
 
+# Compatibility patch for kernels > 2.6.32 <= 2.6.35
+ifeq ($(call kver_le,2,6,35),1)
+	PATCHES := $(PATCHES) compat-2.6.33-2.6.35.patch
+endif
+
 # Compatibility patch for kernels <= 2.6.32
 ifeq ($(call kver_le,2,6,32),1)
 	PATCHES := $(PATCHES) compat-2.6.32.patch