[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1444808810-29995-1-git-send-email-os@iscas.ac.cn>
Date: Wed, 14 Oct 2015 15:46:50 +0800
From: Heloise NH <os@...as.ac.cn>
To: infinipath@...el.com, dledford@...hat.com, sean.hefty@...el.com,
hal.rosenstock@...il.com
Cc: linux-rdna@...r.kernel.org, os@...as.ac.cn,
linux-kernel@...r.kernel.org
Subject: [PATCH] fix return value error
Signed-off-by: Heloise NH <os@...as.ac.cn>
---
drivers/infiniband/hw/ipath/ipath_fs.c | 2 +-
drivers/infiniband/hw/qib/qib_fs.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/infiniband/hw/ipath/ipath_fs.c b/drivers/infiniband/hw/ipath/ipath_fs.c
index 25422a3..da753bc 100644
--- a/drivers/infiniband/hw/ipath/ipath_fs.c
+++ b/drivers/infiniband/hw/ipath/ipath_fs.c
@@ -53,7 +53,7 @@ static int ipathfs_mknod(struct inode *dir, struct dentry *dentry,
struct inode *inode = new_inode(dir->i_sb);
if (!inode) {
- error = -EPERM;
+ error = -ENOMEM;
goto bail;
}
diff --git a/drivers/infiniband/hw/qib/qib_fs.c b/drivers/infiniband/hw/qib/qib_fs.c
index 13ef22b..a4c5a6a 100644
--- a/drivers/infiniband/hw/qib/qib_fs.c
+++ b/drivers/infiniband/hw/qib/qib_fs.c
@@ -55,7 +55,7 @@ static int qibfs_mknod(struct inode *dir, struct dentry *dentry,
struct inode *inode = new_inode(dir->i_sb);
if (!inode) {
- error = -EPERM;
+ error = -ENOMEM;
goto bail;
}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists