public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Moxa Driver Update to 2.6.30
@ 2009-09-15  5:48 Gerhard Wiesinger
  2009-09-16  5:32 ` Gerhard Wiesinger
  0 siblings, 1 reply; 2+ messages in thread
From: Gerhard Wiesinger @ 2009-09-15  5:48 UTC (permalink / raw)
  To: linux-kernel

Hello,

In Kernel 2.6.29 the moxa 5110 driver compiled well. In 2.6.30 some 
deprecated definitions have been removed.

/usr/src/kernels/2.6.29.6-217.2.16.fc11.x86_64/include/linux/sched.h:
struct signal_struct {

         union {
                 pid_t session __deprecated;
                 pid_t __session;
         };

static inline pid_t task_session_nr(struct task_struct *tsk)
{
         return tsk->signal->__session;
}

Code is used in the way:
npreal2.h:
#if (LINUX_VERSION_CODE >= VERSION_CODE(2,6,5))
#if (LINUX_VERSION_CODE >= VERSION_CODE(2,6,20))
#if (LINUX_VERSION_CODE >= VERSION_CODE(2,6,26))
#define MX_SESSION()    task_session_nr(current)
#else
#define MX_SESSION()    (pid_t)tty->session
#endif
#else
#define MX_SESSION()    current->signal->session
#endif
#else
#define MX_SESSION()    current->session
#endif

What's the correct change for the definition of MX_SESSION in 2.6.30?
(Didn't find any useful replacement)

Moxa driver files source files can be found at:
http://www.moxa.com/drivers/DN_Driver/Linux/npreal2_1.16_Build_09030513.tgz

Thnx.

Ciao,
Gerhard

--
http://www.wiesinger.com/

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

* Re: Moxa Driver Update to 2.6.30
  2009-09-15  5:48 Moxa Driver Update to 2.6.30 Gerhard Wiesinger
@ 2009-09-16  5:32 ` Gerhard Wiesinger
  0 siblings, 0 replies; 2+ messages in thread
From: Gerhard Wiesinger @ 2009-09-16  5:32 UTC (permalink / raw)
  To: linux-kernel

Hello,

Noone has an idea?

Thnx.

Ciao,
Gerhard


--
http://www.wiesinger.com/


On Tue, 15 Sep 2009, Gerhard Wiesinger wrote:

> Hello,
>
> In Kernel 2.6.29 the moxa 5110 driver compiled well. In 2.6.30 some 
> deprecated definitions have been removed.
>
> /usr/src/kernels/2.6.29.6-217.2.16.fc11.x86_64/include/linux/sched.h:
> struct signal_struct {
>
>        union {
>                pid_t session __deprecated;
>                pid_t __session;
>        };
>
> static inline pid_t task_session_nr(struct task_struct *tsk)
> {
>        return tsk->signal->__session;
> }
>
> Code is used in the way:
> npreal2.h:
> #if (LINUX_VERSION_CODE >= VERSION_CODE(2,6,5))
> #if (LINUX_VERSION_CODE >= VERSION_CODE(2,6,20))
> #if (LINUX_VERSION_CODE >= VERSION_CODE(2,6,26))
> #define MX_SESSION()    task_session_nr(current)
> #else
> #define MX_SESSION()    (pid_t)tty->session
> #endif
> #else
> #define MX_SESSION()    current->signal->session
> #endif
> #else
> #define MX_SESSION()    current->session
> #endif
>
> What's the correct change for the definition of MX_SESSION in 2.6.30?
> (Didn't find any useful replacement)
>
> Moxa driver files source files can be found at:
> http://www.moxa.com/drivers/DN_Driver/Linux/npreal2_1.16_Build_09030513.tgz
>
> Thnx.
>
> Ciao,
> Gerhard
>
> --
> http://www.wiesinger.com/
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>

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

end of thread, other threads:[~2009-09-16  5:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-15  5:48 Moxa Driver Update to 2.6.30 Gerhard Wiesinger
2009-09-16  5:32 ` Gerhard Wiesinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox