According to :
http://www.kernel.org/doc/man-pages/...2/mount.2.html
The "relatime" flag is indeed used as a default since kernel version 2.6.30, this tweak may be considered obsolete.
The file "/proc/mounts" details the currently mounted volumes along with the mount flags used if someone wants to check if "relatime" is used on their system.
The "mount" command will not detail the defaults as i see it on my system:
[root@danielt-l ~]# cat /proc/mounts
rootfs / rootfs rw 0 0
/proc /proc proc rw,relatime 0 0
/sys /sys sysfs rw,relatime 0 0
udev /dev tmpfs rw,relatime,mode=755 0 0
/dev/pts /dev/pts devpts rw,relatime,gid=5,mode=620,ptmxmode=000 0 0
/dev/shm /dev/shm tmpfs rw,relatime 0 0
/dev/sda3 / ext4 rw,noatime,nodiratime,barrier=1,data=ordered 0 0
/proc/bus/usb /proc/bus/usb usbfs rw,relatime 0 0
/dev/sda1 /boot ext2 rw,noatime,nodiratime,errors=continue 0 0
/dev/sda2 /home ext3 rw,noatime,nodiratime,errors=continue,user_xattr,a cl,data=ordered 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw,relatime 0 0
none /proc/fs/vmblock/mountPoint vmblock rw,relatime 0 0
[root@danielt-l ~]# mount
/dev/sda3 on / type ext4 (rw,noatime,nodiratime)
proc on /proc type proc (rw,noatime,nodiratime)
sysfs on /sys type sysfs (rw,noatime,nodiratime)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw,noatime,nodiratime)
/dev/sda1 on /boot type ext2 (rw,noatime,nodiratime)
/dev/sda2 on /home type ext3 (rw,noatime,nodiratime)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
none on /proc/fs/vmblock/mountPoint type vmblock (rw)