Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b9424a5e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa: remove world writable permissions on debugfs files"

parents 454dadd8 a3d68cd5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1544,8 +1544,8 @@ void ipa_debugfs_init(void)
{
	const mode_t read_only_mode = S_IRUSR | S_IRGRP | S_IROTH;
	const mode_t read_write_mode = S_IRUSR | S_IRGRP | S_IROTH |
			S_IWUSR | S_IWGRP | S_IWOTH;
	const mode_t write_only_mode = S_IWUSR | S_IWGRP | S_IWOTH;
			S_IWUSR | S_IWGRP;
	const mode_t write_only_mode = S_IWUSR | S_IWGRP;
	struct dentry *file;

	dent = debugfs_create_dir("ipa", 0);