From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Sun, 24 Nov 2013 00:38:59 +0000 From: One Thousand Gnomes To: Peter Hurley Cc: Greg Kroah-Hartman , Jiri Slaby , linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org, Subject: Re: [PATCH] n_tty: Fix 4096-byte canonical reads Message-ID: <20131124003859.06728df9@alan.etchedpixels.co.uk> In-Reply-To: <1385122585-8535-1-git-send-email-peter@hurleysoftware.com> References: <1385122585-8535-1-git-send-email-peter@hurleysoftware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: On Fri, 22 Nov 2013 07:16:25 -0500 Peter Hurley wrote: > Although the maximum allowable canonical line is specified to > be 255 bytes (MAX_CANON), the practical limit has actually been > the size of the line discipline read buffer (N_TTY_BUF_SIZE == 4096). Looks good. MAX_CANON in SVID and POSIX is a guarantee that you'll be able to edit that may characters into a line. What happens beyond MAX_CANON is implementation defined and msotly it seems interpreted as "you may get more" - ie MAX_CANON is a minimum line guarantee. Alan