Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158999
b: refs/heads/master
c: 92c330b
h: refs/heads/master
i:
  158997: cc63f9d
  158995: a3a19db
  158991: 38ba9af
v: v3
  • Loading branch information
Andy Grover authored and David S. Miller committed Jul 20, 2009
1 parent 32738be commit 8e43ea9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8dacd57e7ebc307d4d7c27c5d1caada4c4e63ebd
refs/heads/master: 92c330b9e93ce70a8c45a6b8b0a551321d783feb
8 changes: 4 additions & 4 deletions trunk/net/rds/rdma_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ int rds_rdma_cm_event_handler(struct rdma_cm_id *cm_id,
break;

case RDMA_CM_EVENT_DISCONNECTED:
printk(KERN_WARNING "RDS/IW: DISCONNECT event - dropping connection "
printk(KERN_WARNING "RDS/RDMA: DISCONNECT event - dropping connection "
"%pI4->%pI4\n", &conn->c_laddr,
&conn->c_faddr);
rds_conn_drop(conn);
Expand Down Expand Up @@ -132,7 +132,7 @@ static int __init rds_rdma_listen_init(void)
cm_id = rdma_create_id(rds_rdma_cm_event_handler, NULL, RDMA_PS_TCP);
if (IS_ERR(cm_id)) {
ret = PTR_ERR(cm_id);
printk(KERN_ERR "RDS/IW: failed to setup listener, "
printk(KERN_ERR "RDS/RDMA: failed to setup listener, "
"rdma_create_id() returned %d\n", ret);
goto out;
}
Expand All @@ -147,14 +147,14 @@ static int __init rds_rdma_listen_init(void)
*/
ret = rdma_bind_addr(cm_id, (struct sockaddr *)&sin);
if (ret) {
printk(KERN_ERR "RDS/IW: failed to setup listener, "
printk(KERN_ERR "RDS/RDMA: failed to setup listener, "
"rdma_bind_addr() returned %d\n", ret);
goto out;
}

ret = rdma_listen(cm_id, 128);
if (ret) {
printk(KERN_ERR "RDS/IW: failed to setup listener, "
printk(KERN_ERR "RDS/RDMA: failed to setup listener, "
"rdma_listen() returned %d\n", ret);
goto out;
}
Expand Down

0 comments on commit 8e43ea9

Please sign in to comment.