]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
lib/ubsan.c: s/missaligned/misaligned/
authorAndrew Morton <akpm@linux-foundation.org>
Tue, 6 Feb 2018 23:40:38 +0000 (15:40 -0800)
committerSeth Forshee <seth.forshee@canonical.com>
Thu, 22 Feb 2018 14:21:54 +0000 (08:21 -0600)
BugLink: http://bugs.launchpad.net/bugs/1751064
commit b8fe1120b4ba342b4f156d24e952d6e686b20298 upstream.

A vist from the spelling fairy.

Cc: David Laight <David.Laight@ACULAB.COM>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
lib/ubsan.c

index fb0409df1bcf8474969ab5bf28f2c9623a77e041..1e2328fa002ddeb1edccb098a373fc42bdb59b30 100644 (file)
@@ -281,7 +281,7 @@ static void handle_null_ptr_deref(struct type_mismatch_data *data)
        ubsan_epilogue(&flags);
 }
 
-static void handle_missaligned_access(struct type_mismatch_data *data,
+static void handle_misaligned_access(struct type_mismatch_data *data,
                                unsigned long ptr)
 {
        unsigned long flags;
@@ -322,7 +322,7 @@ void __ubsan_handle_type_mismatch(struct type_mismatch_data *data,
        if (!ptr)
                handle_null_ptr_deref(data);
        else if (data->alignment && !IS_ALIGNED(ptr, data->alignment))
-               handle_missaligned_access(data, ptr);
+               handle_misaligned_access(data, ptr);
        else
                handle_object_size_mismatch(data, ptr);
 }