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

Commit 81b647f1 authored by Hepson Sanchez's avatar Hepson Sanchez Committed by Elliot Berman
Browse files

Revert "checkpatch: forbid filesystem accesses from within the kernel."



This reverts commit f9d5afd1.

Change-Id: I6a9671b120c0ac855689a95dac348f34286fcfe5
Signed-off-by: default avatarHepson Sanchez <sanchez@codeaurora.org>
parent 06ad363d
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -5679,13 +5679,6 @@ sub process {
			     "Avoid line continuations in quoted strings\n" . $herecurr);
		}

# sys_open/read/write/close are not allowed in the kernel
		if ($line =~ /\b(sys_(?:open|read|write|close))\b/) {
			ERROR("FILE_OPS",
			      "$1 is inappropriate in kernel code.\n" .
			      $herecurr);
		}

# read[bwl] & write[bwl] use too many barriers, use the _relaxed variants
		if ($line =~ /\b((?:read|write)[bwl])\b/) {
			ERROR("NON_RELAXED_IO",
@@ -5705,7 +5698,6 @@ sub process {
			      "with appropriate memory barriers instead.\n" .
			      $herecurr);
		}

# warn about #if 0
		if ($line =~ /^.\s*\#\s*if\s+0\b/) {
			WARN("IF_0",