public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Richard Knutsson <ricknu-0@student.ltu.se>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.6.15-rc1-mm1
Date: Fri, 18 Nov 2005 02:44:37 +0100	[thread overview]
Message-ID: <437D3205.3080506@student.ltu.se> (raw)
In-Reply-To: <20051117111807.6d4b0535.akpm@osdl.org>

Hi

Andrew Morton wrote:

>ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.15-rc1/2.6.15-rc1-mm1
>  
>
Got a compiler-error:

  CC      drivers/serial/jsm/jsm_tty.o
drivers/serial/jsm/jsm_tty.c: In function `jsm_input':
drivers/serial/jsm/jsm_tty.c:592: error: structure has no member named `flip'
drivers/serial/jsm/jsm_tty.c:619: error: structure has no member named `flip'
drivers/serial/jsm/jsm_tty.c:620: error: structure has no member named `flip'
...

(in file drivers/serial/jsm/jsm_tty.c, line 592)
		flip_len = TTY_FLIPBUF_SIZE - tp->flip.count;

I could not find the patch but I tracked it to the change:


--- linux-2.6.15-rc1/include/linux/tty.h	2005-10-27 17:52:48.000000000 -0700
+++ devel/include/linux/tty.h	2005-11-17 00:55:12.000000000 -0800
@@ -74,8 +74,7 @@ struct screen_info {
 	u16 vesapm_off;		/* 0x30 */
 	u16 pages;		/* 0x32 */
 	u16 vesa_attributes;	/* 0x34 */
-	u32  capabilities;      /* 0x36 */
-				/* 0x3a -- 0x3f reserved for future expansion */
+				/* 0x36 -- 0x3f reserved for future expansion */
 };
 
 extern struct screen_info screen_info;
@@ -121,16 +120,22 @@ extern struct screen_info screen_info;
  */
 #define TTY_FLIPBUF_SIZE 512
 
-struct tty_flip_buffer {
+struct tty_buffer {
+	struct tty_buffer *next;
+	char *char_buf_ptr;
+	unsigned char *flag_buf_ptr;
+	int used;
+	int size;
+	/* Data points here */
+	unsigned long data[0];
+};
+
+struct tty_bufhead {
 	struct work_struct		work;
 	struct semaphore pty_sem;
-	char		*char_buf_ptr;
-	unsigned char	*flag_buf_ptr;
-	int		count;
-	int		buf_num;
-	unsigned char	char_buf[2*TTY_FLIPBUF_SIZE];
-	char		flag_buf[2*TTY_FLIPBUF_SIZE];
-	unsigned char	slop[4]; /* N.B. bug overwrites buffer by 1 */
+	struct tty_buffer *head;	/* Queue head */
+	struct tty_buffer *tail;	/* Active buffer */
+	struct tty_buffer *free;	/* Free queue head */
 };
 /*
  * The pty uses char_buf and flag_buf as a contiguous buffer
@@ -256,10 +261,11 @@ struct tty_struct {
 	unsigned char stopped:1, hw_stopped:1, flow_stopped:1, packet:1;
 	unsigned char low_latency:1, warned:1;
 	unsigned char ctrl_status;
+	unsigned int receive_room;	/* Bytes free for queue */
 
 	struct tty_struct *link;
 	struct fasync_struct *fasync;
-	struct tty_flip_buffer flip;
+	struct tty_bufhead buf;
 	int max_flip_cnt;
 	int alt_speed;		/* For magic substitution of 38400 bps */
 	wait_queue_head_t write_wait;

tty_flip_buffer have been split up to tty_buffer and tty_bufhead, so I do not know what the correct replacement for flip.count is.

/Richard Knutsson



  parent reply	other threads:[~2005-11-18  1:39 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-17 19:18 2.6.15-rc1-mm1 Andrew Morton
2005-11-17 21:30 ` 2.6.15-rc1-mm1 Valdis.Kletnieks
2005-11-17 22:14   ` 2.6.15-rc1-mm1 David Howells
2005-11-17 22:23     ` 2.6.15-rc1-mm1 Valdis.Kletnieks
2005-11-18  4:23       ` 2.6.15-rc1-mm1 - immediate system reset at boot Valdis.Kletnieks
2005-11-18  4:27         ` Andrew Morton
2005-11-18  1:41 ` [-mm patch] kernel/signal.c: fix compile warning Adrian Bunk
2005-11-18  3:59   ` George Anzinger
2005-11-18  1:44 ` Richard Knutsson [this message]
2005-11-18  1:53   ` 2.6.15-rc1-mm1 Andrew Morton
2005-11-18  7:20 ` 2.6.15-rc1-mm1 Reuben Farrelly
2005-11-18  7:42   ` 2.6.15-rc1-mm1 Andrew Morton
2005-11-18  7:56     ` 2.6.15-rc1-mm1 Sander
2005-11-18 20:58     ` 2.6.15-rc1-mm1 Reuben Farrelly
2005-11-18 21:19       ` 2.6.15-rc1-mm1 Andrew Morton
2005-11-18 12:43 ` 2.6.15-rc1-mm1 Ed Tomlinson
2005-11-18 20:37   ` 2.6.15-rc1-mm1 Greg KH
2005-11-18 21:14     ` 2.6.15-rc1-mm1 Ian McDonald
2005-11-18 23:16       ` 2.6.15-rc1-mm1 Ed Tomlinson
2005-11-18 23:03         ` 2.6.15-rc1-mm1 Greg KH
2005-11-18 23:35         ` 2.6.15-rc1-mm1 Ed Tomlinson
2005-11-18 23:51           ` 2.6.15-rc1-mm1 Greg KH
2005-11-19  1:24             ` 2.6.15-rc1-mm1 Ed Tomlinson
2005-11-19  1:26               ` 2.6.15-rc1-mm1 Greg KH
2005-11-19  1:49                 ` 2.6.15-rc1-mm1 Ian McDonald
2005-11-19  3:24                 ` 2.6.15-rc1-mm1 Ed Tomlinson
2005-11-21  0:00                   ` 2.6.15-rc1-mm1 Ian McDonald
2005-11-21  0:26                   ` 2.6.15-rc1-mm1 Greg KH
2005-11-22 20:47                     ` 2.6.15-rc1-mm1 Ian McDonald
2005-11-22 20:55                       ` 2.6.15-rc1-mm1 Greg KH
2005-11-22 22:05                         ` 2.6.15-rc1-mm1 Ian McDonald
2005-11-19  1:40               ` 2.6.15-rc1-mm1 Ian McDonald

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=437D3205.3080506@student.ltu.se \
    --to=ricknu-0@student.ltu.se \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox