supported by Kernel. Not to be confused with NTFS ACLs.
                        The option specified as acl enables support for POSIX ACLs.
 
-noatime                        All files and directories will not update their last access
-                       time attribute if a partition is mounted with this parameter.
-                       This option can speed up file system operation.
-
 ===============================================================================
 
 ToDo list
 
        Opt_nohidden,
        Opt_showmeta,
        Opt_acl,
-       Opt_noatime,
        Opt_nls,
        Opt_prealloc,
        Opt_no_acs_rules,
        { Opt_sparse, "sparse" },
        { Opt_nohidden, "nohidden" },
        { Opt_acl, "acl" },
-       { Opt_noatime, "noatime" },
        { Opt_showmeta, "showmeta" },
        { Opt_nls, "nls=%s" },
        { Opt_prealloc, "prealloc" },
                        ntfs_err(sb, "support for ACL not compiled in!");
                        return -EINVAL;
 #endif
-               case Opt_noatime:
-                       sb->s_flags |= SB_NOATIME;
-                       break;
                case Opt_showmeta:
                        opts->showmeta = 1;
                        break;
                seq_puts(m, ",prealloc");
        if (sb->s_flags & SB_POSIXACL)
                seq_puts(m, ",acl");
-       if (sb->s_flags & SB_NOATIME)
-               seq_puts(m, ",noatime");
 
        return 0;
 }