diff options
| author | Dmitry Torokhov <[email protected]> | 2023-05-01 15:20:08 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2023-05-01 15:20:08 -0700 | 
| commit | 9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e (patch) | |
| tree | d57f3a63479a07b4e0cece029886e76e04feb984 /drivers/mtd/ubi/debug.c | |
| parent | 5dc63e56a9cf8df0b59c234a505a1653f1bdf885 (diff) | |
| parent | 53bea86b5712c7491bb3dae12e271666df0a308c (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.4 merge window.
Diffstat (limited to 'drivers/mtd/ubi/debug.c')
| -rw-r--r-- | drivers/mtd/ubi/debug.c | 19 | 
1 files changed, 10 insertions, 9 deletions
diff --git a/drivers/mtd/ubi/debug.c b/drivers/mtd/ubi/debug.c index fcca6942dbdd..27168f511d6d 100644 --- a/drivers/mtd/ubi/debug.c +++ b/drivers/mtd/ubi/debug.c @@ -504,6 +504,7 @@ int ubi_debugfs_init_dev(struct ubi_device *ubi)  {  	unsigned long ubi_num = ubi->ubi_num;  	struct ubi_debug_info *d = &ubi->dbg; +	umode_t mode = S_IRUSR | S_IWUSR;  	int n;  	if (!IS_ENABLED(CONFIG_DEBUG_FS)) @@ -518,41 +519,41 @@ int ubi_debugfs_init_dev(struct ubi_device *ubi)  	d->dfs_dir = debugfs_create_dir(d->dfs_dir_name, dfs_rootdir); -	d->dfs_chk_gen = debugfs_create_file("chk_gen", S_IWUSR, d->dfs_dir, +	d->dfs_chk_gen = debugfs_create_file("chk_gen", mode, d->dfs_dir,  					     (void *)ubi_num, &dfs_fops); -	d->dfs_chk_io = debugfs_create_file("chk_io", S_IWUSR, d->dfs_dir, +	d->dfs_chk_io = debugfs_create_file("chk_io", mode, d->dfs_dir,  					    (void *)ubi_num, &dfs_fops); -	d->dfs_chk_fastmap = debugfs_create_file("chk_fastmap", S_IWUSR, +	d->dfs_chk_fastmap = debugfs_create_file("chk_fastmap", mode,  						 d->dfs_dir, (void *)ubi_num,  						 &dfs_fops); -	d->dfs_disable_bgt = debugfs_create_file("tst_disable_bgt", S_IWUSR, +	d->dfs_disable_bgt = debugfs_create_file("tst_disable_bgt", mode,  						 d->dfs_dir, (void *)ubi_num,  						 &dfs_fops);  	d->dfs_emulate_bitflips = debugfs_create_file("tst_emulate_bitflips", -						      S_IWUSR, d->dfs_dir, +						      mode, d->dfs_dir,  						      (void *)ubi_num,  						      &dfs_fops);  	d->dfs_emulate_io_failures = debugfs_create_file("tst_emulate_io_failures", -							 S_IWUSR, d->dfs_dir, +							 mode, d->dfs_dir,  							 (void *)ubi_num,  							 &dfs_fops);  	d->dfs_emulate_power_cut = debugfs_create_file("tst_emulate_power_cut", -						       S_IWUSR, d->dfs_dir, +						       mode, d->dfs_dir,  						       (void *)ubi_num,  						       &dfs_fops);  	d->dfs_power_cut_min = debugfs_create_file("tst_emulate_power_cut_min", -						   S_IWUSR, d->dfs_dir, +						   mode, d->dfs_dir,  						   (void *)ubi_num, &dfs_fops);  	d->dfs_power_cut_max = debugfs_create_file("tst_emulate_power_cut_max", -						   S_IWUSR, d->dfs_dir, +						   mode, d->dfs_dir,  						   (void *)ubi_num, &dfs_fops);  	debugfs_create_file("detailed_erase_block_info", S_IRUSR, d->dfs_dir,  |