Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

KVM: x86: fix typo "notifer"

Patch series "treewide: Fix typo "notifer"", v3.

There are some spelling mistakes of 'notifer' in comments which
should be 'notifier'.

Fix them and add it to scripts/spelling.txt.


This patch (of 8):

There are some spelling mistakes of 'notifer' which should be 'notifier'.

Link: https://lkml.kernel.org/r/576F0D85F6853074+20250722072734.19367-1-wangyuli@uniontech.com
Link: https://lkml.kernel.org/r/7F05778C3A1A9F8B+20250722073431.21983-1-wangyuli@uniontech.com
Signed-off-by: WangYuli <wangyuli@uniontech.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

WangYuli and committed by
Andrew Morton
a30469ca 1f03d55e

+2 -2
+2 -2
arch/x86/kvm/i8254.c
··· 641 641 kvm_pit_reset_reinject(pit); 642 642 } 643 643 644 - static void pit_mask_notifer(struct kvm_irq_mask_notifier *kimn, bool mask) 644 + static void pit_mask_notifier(struct kvm_irq_mask_notifier *kimn, bool mask) 645 645 { 646 646 struct kvm_pit *pit = container_of(kimn, struct kvm_pit, mask_notifier); 647 647 ··· 694 694 695 695 pit_state->irq_ack_notifier.gsi = 0; 696 696 pit_state->irq_ack_notifier.irq_acked = kvm_pit_ack_irq; 697 - pit->mask_notifier.func = pit_mask_notifer; 697 + pit->mask_notifier.func = pit_mask_notifier; 698 698 699 699 kvm_pit_reset(pit); 700 700