Boot errors on fstab

I'm looking at trying to speed up my boot time on the x86 system. I've noticed a few seconds seem to be wasted around trying to mount some file systems.

[    3.340045] usb 1-4.1: new full-speed USB device number 4 using xhci_hcd
[    6.042272] urandom_read: 5 callbacks suppressed
[    6.042275] random: jshn: uninitialized urandom read (4 bytes read)
[    6.097986] mount_root: loading kmods from internal overlay
[    6.120161] kmodloader: loading kernel modules from //etc/modules-boot.d/*
[    6.128835] kmodloader: done loading kernel modules from //etc/modules-boot.d/*
[    6.266907] random: fast init done
[    6.274726] block: attempting to load /etc/config/fstab
[    6.280808] block: unable to load configuration (fstab: Entry not found)
[    6.288454] block: no usable configuration
[    6.494366] F2FS-fs (loop0): Mounted with checkpoint version = 502baac1
[    6.524811] block: attempting to load /etc/config/fstab
[    6.530937] block: unable to load configuration (fstab: Entry not found)
[    6.538583] block: no usable configuration
[    6.543823] mount_root: switching to f2fs overlay
[    6.644490] EXT4-fs (mmcblk0p1): mounted filesystem without journal. Opts: (null)
[    6.655806] urandom-seed: Seeding with /etc/urandom.seed
[    6.690506] procd: - early -
[    6.853895] random: jshn: uninitialized urandom read (4 bytes read)
[    7.277882] procd: - ubus -

Particularly odd were the two entries of
[ 7.186295] block: attempting to load /etc/config/fstab
[ 7.192393] block: unable to load configuration (fstab: Entry not found)

Any idea what is causing this?

My fstab files is below... auto-generated by OpenWRT and not modified by me.

root@router:~# cat /etc/config/fstab
config 'global'
        option  anon_swap       '0'
        option  anon_mount      '0'
        option  auto_swap       '1'
        option  auto_mount      '1'
        option  delay_root      '5'
        option  check_fs        '0'

config 'mount'
        option  target  '/mnt/loop0'
        option  uuid    'bf09b72a-0e44-4d99-8869-75558cbfde73'
        option  enabled '0'

config 'mount'
        option  target  '/mnt/mmcblk0p1'
        option  uuid    '57f8f4bc-abf4-655f-bf67-946cc0f9f25b'
        option  enabled '0'

config 'mount'
        option  target  '/mnt/mmcblk0p2'
        option  uuid    'da077364-c0b29325-cc009d29-ecc4ff5e'
        option  enabled '0'

https://bugs.openwrt.org/index.php?do=details&task_id=2231