浏览代码

sysfs: spit a warning to users when they try to create a duplicate sysfs file

We want to let people know when we create a duplicate sysfs file, as
they need to fix up their code.


Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman 18 年之前
父节点
当前提交
5c3e8964ce
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      fs/sysfs/dir.c

+ 5 - 1
fs/sysfs/dir.c

@@ -428,8 +428,12 @@ void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
  */
  */
 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
 {
 {
-	if (sysfs_find_dirent(acxt->parent_sd, sd->s_name))
+	if (sysfs_find_dirent(acxt->parent_sd, sd->s_name)) {
+		printk(KERN_WARNING "sysfs: duplicate filename '%s' "
+		       "can not be created\n", sd->s_name);
+		WARN_ON(1);
 		return -EEXIST;
 		return -EEXIST;
+	}
 
 
 	sd->s_parent = sysfs_get(acxt->parent_sd);
 	sd->s_parent = sysfs_get(acxt->parent_sd);