|
@@ -477,8 +477,7 @@ struct page *svc_rdma_get_page(void)
|
|
|
|
|
|
while ((page = alloc_page(GFP_KERNEL)) == NULL) {
|
|
while ((page = alloc_page(GFP_KERNEL)) == NULL) {
|
|
/* If we can't get memory, wait a bit and try again */
|
|
/* If we can't get memory, wait a bit and try again */
|
|
- printk(KERN_INFO "svcrdma: out of memory...retrying in 1000 "
|
|
|
|
- "jiffies.\n");
|
|
|
|
|
|
+ printk(KERN_INFO "svcrdma: out of memory...retrying in 1s\n");
|
|
schedule_timeout_uninterruptible(msecs_to_jiffies(1000));
|
|
schedule_timeout_uninterruptible(msecs_to_jiffies(1000));
|
|
}
|
|
}
|
|
return page;
|
|
return page;
|