All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philippe Gerum <rpm@xenomai.org>
To: Jan Kiszka <jan.kiszka@domain.hid>
Cc: xenomai-core <xenomai@xenomai.org>
Subject: Re: [Xenomai-core] [patch] fix SMI and proc cleanup
Date: Wed, 30 Nov 2005 10:14:24 +0100	[thread overview]
Message-ID: <438D6D70.80502@domain.hid> (raw)
In-Reply-To: <438D61CD.7000701@domain.hid>

Jan Kiszka wrote:
> Hi,
> 
> the smaller the bug is, the longer it takes to track. The first one in
> this patch was such an issue. It prevented the SMI workaround to do its
> job because the related PCI ID table got "optimised" away (SVN trunk only).

Good catch. Fact is that this table must survive free_initmem() now 
since we want to enable the SMI watchdog only when the nucleus is 
actually running a real-time interface.

> 
> The second one is also SVN-only. It fixes the proc-fs cleanup of the
> nucleus when being used as a module.
> 
> I also removed some special character from a name in the ChangeLog.
> 
> Please apply!
> 

Applied, thanks.

> Jan
> 
> 
> 
> ------------------------------------------------------------------------
> 
> Index: ChangeLog
> ===================================================================
> --- ChangeLog	(Revision 208)
> +++ ChangeLog	(Arbeitskopie)
> @@ -1,3 +1,11 @@
> +2005-11-30  Jan Kiszka <jan.kiszka@domain.hid>
> +
> +	* ksrc/arch/i386/smi.c: Remove __initdata from rthal_smi_pci_tbl
> +	to make table persistent.
> +
> +	* ksrc/nucleus/module.c (__xeno_sys_exit): Reorder proc-fs
> +	cleanup to avoid stalled entries.
> +
>  2005-11-29  Philippe Gerum  <rpm@xenomai.org>
>  
>  	* ksrc/nucleus/pipe.c (xnpipe_recv): Remove superfluous timeout
> @@ -623,7 +631,7 @@
>  
>  	* nucleus/module.c: Revamp /proc/xenomai/{sched,stat} output format.
>  
> -2005-08-31  Stéphane Fillod  <stephane.fillod@domain.hid>
> +2005-08-31  Stephane Fillod  <stephane.fillod@domain.hid>
>  
>  	* skins/rtai/fifo.c (__fifo_pkg_init): fix missing init of flush
>  	queue handles.
> Index: ksrc/arch/i386/smi.c
> ===================================================================
> --- ksrc/arch/i386/smi.c	(Revision 208)
> +++ ksrc/arch/i386/smi.c	(Arbeitskopie)
> @@ -31,7 +31,7 @@
>  #include <linux/reboot.h>
>  #include <asm/xenomai/smi.h>
>  
> -static struct pci_device_id rthal_smi_pci_tbl[] __initdata = {
> +static struct pci_device_id rthal_smi_pci_tbl[] = {
>  { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_0) },
>  { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_0) },
>  { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0) },
> Index: ksrc/nucleus/module.c
> ===================================================================
> --- ksrc/nucleus/module.c	(Revision 208)
> +++ ksrc/nucleus/module.c	(Arbeitskopie)
> @@ -817,6 +817,10 @@
>  {
>      xnpod_shutdown(XNPOD_NORMAL_EXIT);
>  
> +#if defined(__KERNEL__) && defined(CONFIG_PROC_FS)
> +    xnpod_delete_proc();
> +#endif /* __KERNEL__ && CONFIG_PROC_FS */
> +
>      xnarch_exit();
>  
>  #ifdef __KERNEL__
> @@ -830,9 +834,6 @@
>  #ifdef CONFIG_LTT
>      xnltt_umount();
>  #endif /* CONFIG_LTT */
> -#ifdef CONFIG_PROC_FS
> -    xnpod_delete_proc();
> -#endif /* CONFIG_PROC_FS */
>  #endif /* __KERNEL__ */
>  
>      if (nkmsgbuf)
> 
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Xenomai-core mailing list
> Xenomai-core@domain.hid
> https://mail.gna.org/listinfo/xenomai-core


-- 

Philippe.


      reply	other threads:[~2005-11-30  9:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-30  8:24 [Xenomai-core] [patch] fix SMI and proc cleanup Jan Kiszka
2005-11-30  9:14 ` Philippe Gerum [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=438D6D70.80502@domain.hid \
    --to=rpm@xenomai.org \
    --cc=jan.kiszka@domain.hid \
    --cc=xenomai@xenomai.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.