* [tty:tty-next 15/23] drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw'
@ 2012-10-23 2:25 Fengguang Wu
2012-10-23 3:05 ` Greg Kroah-Hartman
0 siblings, 1 reply; 3+ messages in thread
From: Fengguang Wu @ 2012-10-23 2:25 UTC (permalink / raw)
To: Jiri Slaby; +Cc: Yuanhan Liu, Greg Kroah-Hartman, linux-serial
Hi Jiri,
FYI, kernel build failed on
tree: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tty-next
head: ecbbfd44a08fa80e0d664814efd4c187721b85f6
commit: 53c5ee2cfb4dadc4f5c24fe671e2fbfc034c875e [15/23] TTY: move ldisc data from tty_struct: simple members
config: x86_64-allmodconfig # make ARCH=x86_64 allmodconfig
All error/warnings:
drivers/staging/dgrp/dgrp_net_ops.c: In function 'dgrp_input':
drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw'
drivers/staging/dgrp/dgrp_net_ops.c:261:30: error: 'struct tty_struct' has no member named 'real_raw'
drivers/staging/dgrp/dgrp_net_ops.c:276:28: error: 'struct tty_struct' has no member named 'real_raw'
vim +216 drivers/staging/dgrp/dgrp_net_ops.c
0b52b749 Bill Pemberton 2012-09-20 215 /* Decide how much data we can send into the tty layer */
0b52b749 Bill Pemberton 2012-09-20 @216 if (dgrp_rawreadok && tty->real_raw)
0b52b749 Bill Pemberton 2012-09-20 217 flip_len = MYFLIPLEN;
0b52b749 Bill Pemberton 2012-09-20 218 else
0b52b749 Bill Pemberton 2012-09-20 219 flip_len = TTY_FLIPBUF_SIZE;
---
0-DAY kernel build testing backend Open Source Technology Center
Fengguang Wu, Yuanhan Liu Intel Corporation
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [tty:tty-next 15/23] drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw'
2012-10-23 2:25 [tty:tty-next 15/23] drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw' Fengguang Wu
@ 2012-10-23 3:05 ` Greg Kroah-Hartman
2012-10-23 3:54 ` Fengguang Wu
0 siblings, 1 reply; 3+ messages in thread
From: Greg Kroah-Hartman @ 2012-10-23 3:05 UTC (permalink / raw)
To: Fengguang Wu; +Cc: Jiri Slaby, Yuanhan Liu, linux-serial
On Tue, Oct 23, 2012 at 10:25:45AM +0800, Fengguang Wu wrote:
> Hi Jiri,
>
> FYI, kernel build failed on
>
> tree: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tty-next
> head: ecbbfd44a08fa80e0d664814efd4c187721b85f6
> commit: 53c5ee2cfb4dadc4f5c24fe671e2fbfc034c875e [15/23] TTY: move ldisc data from tty_struct: simple members
> config: x86_64-allmodconfig # make ARCH=x86_64 allmodconfig
>
> All error/warnings:
>
> drivers/staging/dgrp/dgrp_net_ops.c: In function 'dgrp_input':
> drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw'
> drivers/staging/dgrp/dgrp_net_ops.c:261:30: error: 'struct tty_struct' has no member named 'real_raw'
> drivers/staging/dgrp/dgrp_net_ops.c:276:28: error: 'struct tty_struct' has no member named 'real_raw'
>
> vim +216 drivers/staging/dgrp/dgrp_net_ops.c
>
> 0b52b749 Bill Pemberton 2012-09-20 215 /* Decide how much data we can send into the tty layer */
> 0b52b749 Bill Pemberton 2012-09-20 @216 if (dgrp_rawreadok && tty->real_raw)
> 0b52b749 Bill Pemberton 2012-09-20 217 flip_len = MYFLIPLEN;
> 0b52b749 Bill Pemberton 2012-09-20 218 else
> 0b52b749 Bill Pemberton 2012-09-20 219 flip_len = TTY_FLIPBUF_SIZE;
Thanks for this, and the other report, I already pointed them out to
Jiri and hopefully will get a patch from him when he returns from the
openSUSE conference.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [tty:tty-next 15/23] drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw'
2012-10-23 3:05 ` Greg Kroah-Hartman
@ 2012-10-23 3:54 ` Fengguang Wu
0 siblings, 0 replies; 3+ messages in thread
From: Fengguang Wu @ 2012-10-23 3:54 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Jiri Slaby, Yuanhan Liu, linux-serial
On Mon, Oct 22, 2012 at 08:05:43PM -0700, Greg KH wrote:
> On Tue, Oct 23, 2012 at 10:25:45AM +0800, Fengguang Wu wrote:
> > Hi Jiri,
> >
> > FYI, kernel build failed on
> >
> > tree: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tty-next
> > head: ecbbfd44a08fa80e0d664814efd4c187721b85f6
> > commit: 53c5ee2cfb4dadc4f5c24fe671e2fbfc034c875e [15/23] TTY: move ldisc data from tty_struct: simple members
> > config: x86_64-allmodconfig # make ARCH=x86_64 allmodconfig
> >
> > All error/warnings:
> >
> > drivers/staging/dgrp/dgrp_net_ops.c: In function 'dgrp_input':
> > drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw'
> > drivers/staging/dgrp/dgrp_net_ops.c:261:30: error: 'struct tty_struct' has no member named 'real_raw'
> > drivers/staging/dgrp/dgrp_net_ops.c:276:28: error: 'struct tty_struct' has no member named 'real_raw'
> >
> > vim +216 drivers/staging/dgrp/dgrp_net_ops.c
> >
> > 0b52b749 Bill Pemberton 2012-09-20 215 /* Decide how much data we can send into the tty layer */
> > 0b52b749 Bill Pemberton 2012-09-20 @216 if (dgrp_rawreadok && tty->real_raw)
> > 0b52b749 Bill Pemberton 2012-09-20 217 flip_len = MYFLIPLEN;
> > 0b52b749 Bill Pemberton 2012-09-20 218 else
> > 0b52b749 Bill Pemberton 2012-09-20 219 flip_len = TTY_FLIPBUF_SIZE;
>
>
> Thanks for this, and the other report, I already pointed them out to
> Jiri and hopefully will get a patch from him when he returns from the
> openSUSE conference.
OK, thanks for the info. BTW, expect another related error:
arch/um/drivers/chan_kern.c:89:42: error: 'struct tty_struct' has no member named 'raw'
Thanks,
Fengguang
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-23 3:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 2:25 [tty:tty-next 15/23] drivers/staging/dgrp/dgrp_net_ops.c:216:27: error: 'struct tty_struct' has no member named 'real_raw' Fengguang Wu
2012-10-23 3:05 ` Greg Kroah-Hartman
2012-10-23 3:54 ` Fengguang Wu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).