All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt()
@ 2022-09-15 15:01 Tuo Cao
  2022-09-15 17:34 ` Jonathan Corbet
  2022-09-21 19:56 ` Jonathan Corbet
  0 siblings, 2 replies; 4+ messages in thread
From: Tuo Cao @ 2022-09-15 15:01 UTC (permalink / raw)
  To: tglx, mingo, bp, dave.hansen, x86, hpa, corbet
  Cc: linux-kernel, linux-doc, 91tuocao

do_IRQ has been replaced by common_interrupt in commit
fa5e5c409213 ("x86/entry: Use idtentry for interrupts").

Signed-off-by: Tuo Cao <91tuocao@gmail.com>
---
 Documentation/x86/entry_64.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/x86/entry_64.rst b/Documentation/x86/entry_64.rst
index e433e08f7018..0afdce3c06f4 100644
--- a/Documentation/x86/entry_64.rst
+++ b/Documentation/x86/entry_64.rst
@@ -33,8 +33,8 @@ Some of these entries are:
  - interrupt: An array of entries.  Every IDT vector that doesn't
    explicitly point somewhere else gets set to the corresponding
    value in interrupts.  These point to a whole array of
-   magically-generated functions that make their way to do_IRQ with
-   the interrupt number as a parameter.
+   magically-generated functions that make their way to common_interrupt()
+   with the interrupt number as a parameter.
 
  - APIC interrupts: Various special-purpose interrupts for things
    like TLB shootdown.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt()
  2022-09-15 15:01 [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt() Tuo Cao
@ 2022-09-15 17:34 ` Jonathan Corbet
  2022-09-16 14:50   ` tuo cao
  2022-09-21 19:56 ` Jonathan Corbet
  1 sibling, 1 reply; 4+ messages in thread
From: Jonathan Corbet @ 2022-09-15 17:34 UTC (permalink / raw)
  To: Tuo Cao, tglx, mingo, bp, dave.hansen, x86, hpa
  Cc: linux-kernel, linux-doc, 91tuocao

Tuo Cao <91tuocao@gmail.com> writes:

> do_IRQ has been replaced by common_interrupt in commit
> fa5e5c409213 ("x86/entry: Use idtentry for interrupts").
>
> Signed-off-by: Tuo Cao <91tuocao@gmail.com>
> ---
>  Documentation/x86/entry_64.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/x86/entry_64.rst b/Documentation/x86/entry_64.rst
> index e433e08f7018..0afdce3c06f4 100644
> --- a/Documentation/x86/entry_64.rst
> +++ b/Documentation/x86/entry_64.rst
> @@ -33,8 +33,8 @@ Some of these entries are:
>   - interrupt: An array of entries.  Every IDT vector that doesn't
>     explicitly point somewhere else gets set to the corresponding
>     value in interrupts.  These point to a whole array of
> -   magically-generated functions that make their way to do_IRQ with
> -   the interrupt number as a parameter.
> +   magically-generated functions that make their way to common_interrupt()
> +   with the interrupt number as a parameter.
>  
>   - APIC interrupts: Various special-purpose interrupts for things
>     like TLB shootdown.

So why have you sent a "v3" the same day?  It doesn't look like anything
has changed...?

Thanks,

jon

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt()
  2022-09-15 17:34 ` Jonathan Corbet
@ 2022-09-16 14:50   ` tuo cao
  0 siblings, 0 replies; 4+ messages in thread
From: tuo cao @ 2022-09-16 14:50 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: tglx, mingo, bp, dave.hansen, x86, hpa, linux-kernel, linux-doc

Jonathan Corbet <corbet@lwn.net> 于2022年9月16日周五 01:35写道:
>
> Tuo Cao <91tuocao@gmail.com> writes:
>
> > do_IRQ has been replaced by common_interrupt in commit
> > fa5e5c409213 ("x86/entry: Use idtentry for interrupts").
> >
> > Signed-off-by: Tuo Cao <91tuocao@gmail.com>
> > ---
> >  Documentation/x86/entry_64.rst | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/x86/entry_64.rst b/Documentation/x86/entry_64.rst
> > index e433e08f7018..0afdce3c06f4 100644
> > --- a/Documentation/x86/entry_64.rst
> > +++ b/Documentation/x86/entry_64.rst
> > @@ -33,8 +33,8 @@ Some of these entries are:
> >   - interrupt: An array of entries.  Every IDT vector that doesn't
> >     explicitly point somewhere else gets set to the corresponding
> >     value in interrupts.  These point to a whole array of
> > -   magically-generated functions that make their way to do_IRQ with
> > -   the interrupt number as a parameter.
> > +   magically-generated functions that make their way to common_interrupt()
> > +   with the interrupt number as a parameter.
> >
> >   - APIC interrupts: Various special-purpose interrupts for things
> >     like TLB shootdown.
>
> So why have you sent a "v3" the same day?  It doesn't look like anything
> has changed...?
"v3" has wrote common_interrupt() with the brackets.

>
> Thanks,
>
> jon

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt()
  2022-09-15 15:01 [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt() Tuo Cao
  2022-09-15 17:34 ` Jonathan Corbet
@ 2022-09-21 19:56 ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2022-09-21 19:56 UTC (permalink / raw)
  To: Tuo Cao, tglx, mingo, bp, dave.hansen, x86, hpa
  Cc: linux-kernel, linux-doc, 91tuocao

Tuo Cao <91tuocao@gmail.com> writes:

> do_IRQ has been replaced by common_interrupt in commit
> fa5e5c409213 ("x86/entry: Use idtentry for interrupts").
>
> Signed-off-by: Tuo Cao <91tuocao@gmail.com>
> ---
>  Documentation/x86/entry_64.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/x86/entry_64.rst b/Documentation/x86/entry_64.rst
> index e433e08f7018..0afdce3c06f4 100644
> --- a/Documentation/x86/entry_64.rst
> +++ b/Documentation/x86/entry_64.rst
> @@ -33,8 +33,8 @@ Some of these entries are:
>   - interrupt: An array of entries.  Every IDT vector that doesn't
>     explicitly point somewhere else gets set to the corresponding
>     value in interrupts.  These point to a whole array of
> -   magically-generated functions that make their way to do_IRQ with
> -   the interrupt number as a parameter.
> +   magically-generated functions that make their way to common_interrupt()
> +   with the interrupt number as a parameter.
>  
>   - APIC interrupts: Various special-purpose interrupts for things
>     like TLB shootdown.

Applied, thanks.

jon

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-21 19:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-15 15:01 [PATCH v3] docs: x86: replace do_IRQ int the entry_64.rst with common_interrupt() Tuo Cao
2022-09-15 17:34 ` Jonathan Corbet
2022-09-16 14:50   ` tuo cao
2022-09-21 19:56 ` Jonathan Corbet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.