rxrpc: Keep the skb private record of the Rx header in host byte order
[deliverable/linux.git] / net / rxrpc / ar-proc.c
index 38047f713f2cf0fb2b60261039c475bd7fe19f7e..525b2ba5a8f4095105d27833dbb948cd26c75b7b 100644 (file)
@@ -74,9 +74,9 @@ static int rxrpc_call_seq_show(struct seq_file *seq, void *v)
                   " %-8.8s %08x %lx\n",
                   lbuff,
                   rbuff,
-                  ntohs(call->conn->service_id),
-                  ntohl(call->conn->cid),
-                  ntohl(call->call_id),
+                  call->conn->service_id,
+                  call->cid,
+                  call->call_id,
                   call->conn->in_clientflag ? "Svc" : "Clt",
                   atomic_read(&call->usage),
                   rxrpc_call_states[call->state],
@@ -157,8 +157,8 @@ static int rxrpc_connection_seq_show(struct seq_file *seq, void *v)
                   " %s %08x %08x %08x\n",
                   lbuff,
                   rbuff,
-                  ntohs(conn->service_id),
-                  ntohl(conn->cid),
+                  conn->service_id,
+                  conn->cid,
                   conn->call_counter,
                   conn->in_clientflag ? "Svc" : "Clt",
                   atomic_read(&conn->usage),
This page took 0.026714 seconds and 5 git commands to generate.