diff options
author | Pramod Kumar <pramod@chelsio.com> | 2014-11-21 09:36:35 -0600 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2014-12-15 18:10:45 -0800 |
commit | 63a71ba6178a1989dcea1c5f595b6c6a3d48d6d9 (patch) | |
tree | 88fd548fe3279f5df2eb5b3e9e94d5a0234c8a28 /drivers/infiniband/hw/cxgb4 | |
parent | 70e71ca0af244f48a5dcf56dc435243792e3a495 (diff) |
RDMA/cxgb4: Increase epd buff size for debug interface
IPv6 address string lengths require increasing the buffer size for
debugfs handlers.
Signed-off-by: Pramod Kumar <pramod@chelsio.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb4')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb4/device.c b/drivers/infiniband/hw/cxgb4/device.c index 72f1f052e88..eb5df4e6270 100644 --- a/drivers/infiniband/hw/cxgb4/device.c +++ b/drivers/infiniband/hw/cxgb4/device.c @@ -670,7 +670,7 @@ static int ep_open(struct inode *inode, struct file *file) idr_for_each(&epd->devp->stid_idr, count_idrs, &count); spin_unlock_irq(&epd->devp->lock); - epd->bufsize = count * 160; + epd->bufsize = count * 240; epd->buf = vmalloc(epd->bufsize); if (!epd->buf) { ret = -ENOMEM; |