__FUNCTION__ exists only for backwards compatibility reasons
with old gcc versions. Replace it with __func__.
Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
        if (length != igeo->ialloc_blks &&
            length != igeo->ialloc_min_blks) {
                xfs_warn(log->l_mp,
-                        "%s: unsupported chunk length", __FUNCTION__);
+                        "%s: unsupported chunk length", __func__);
                return -EINVAL;
        }
 
        if ((count >> mp->m_sb.sb_inopblog) != length) {
                xfs_warn(log->l_mp,
                         "%s: inconsistent inode count and chunk length",
-                        __FUNCTION__);
+                        __func__);
                return -EINVAL;
        }