Revert "Do not fsck f2fs disk when handling a user-requested shutdown"

This reverts commit a981489c0150f3b0d708338009b55b40e9efa0eb.

Reason for revert: b/431893616

This CL was identified via bisection as the root cause of b/431893616. We will not submit the revert until we have verified that the revert fixes this issue.

Bug: 425186640
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:346037ef54790118a2e3f198a7517bbcccf77dd5)
Merged-In: I9abc5c0f45b4e228c3c2f4fc9c001c3de194f5de
Change-Id: I9abc5c0f45b4e228c3c2f4fc9c001c3de194f5de
diff --git a/init/reboot.cpp b/init/reboot.cpp
index ee353a8..709c1a0 100644
--- a/init/reboot.cpp
+++ b/init/reboot.cpp
@@ -148,8 +148,7 @@
         if (IsF2Fs()) {
             const char* f2fs_argv[] = {
                     "/system/bin/fsck.f2fs",
-                    "-p",
-                    "2",
+                    "-a",
                     mnt_fsname_.c_str(),
             };
             // FIXME: enable more logs for debugging b/425186640