From: xiaoli feng <xifeng@xxxxxxxxxx> >From the feedback of cifs developer, the behaviour of atime/noatime for cifs is basically noatime always. So the atime related mount options have no effect on cifs mounts. And Skip these tests on CIFS. Signed-off-by: xiaoli feng <xifeng@xxxxxxxxxx> --- common/rc | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/common/rc b/common/rc index ffe5323..0295b30 100644 --- a/common/rc +++ b/common/rc @@ -3242,9 +3242,16 @@ _exclude_scratch_mount_option() _require_atime() { _exclude_scratch_mount_option "noatime" - if [ "$FSTYP" == "nfs" ]; then - _notrun "atime related mount options have no effect on NFS" - fi + case $FSTYP + in + nfs) + _notrun "atime related mount options have no effect on NFS" + ;; + cifs) + _notrun "atime related mount options have no effect on CIFS" + ;; + esac + } _require_relatime() -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html