can't find file to patch at input line 125 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Tue Aug 10 19:50:36 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: Mail Delivery System |X-Patchwork-Id: 44631 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id EB659396D821 | for ; Tue, 10 Aug 2021 19:51:19 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EB659396D821 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1628625080; | bh=pYOxA4933qGgsHt9B6jgN6rHBWVdMdwpTFeYcwcYSD0=; | h=Date:From:Subject:To:List-Id:List-Unsubscribe:List-Archive: | List-Post:List-Help:List-Subscribe:From; | b=ffgln/JFkSXrjFk6f5ljnK8Ve6iT4ekhLaYQwABQZzVhm3gZJEF2wSMHfBwnxfE28 | 7p6y7Qyq8UntmBmGMgSB/3cYeoQfTJLkWQugdF7s31zuINA5SxYwyRITuwDlItTNkP | jOV9tCc/xa6VuxhZLjV2/NStSemhl3K7NM7OjfzY= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from fx308.security-mail.net (smtpout30.security-mail.net | [85.31.212.39]) | by sourceware.org (Postfix) with ESMTPS id 514CC396E42B | for ; Tue, 10 Aug 2021 19:50:37 +0000 (GMT) |Authentication-Results: sourceware.org; | dkim=permerror (bad message/signature format) |Received: by fx308.security-mail.net (Postfix) | id 5CBD427FA6C; Tue, 10 Aug 2021 21:50:36 +0200 (CEST) |Date: Tue, 10 Aug 2021 21:50:36 +0200 (CEST) |From: MAILER-DAEMON@sourceware.org (Mail Delivery System) |Subject: Undelivered Mail Returned to Sender |To: libc-alpha@sourceware.org |Auto-Submitted: auto-replied |MIME-Version: 1.0 |Message-Id: <20210810195036.5CBD427FA6C@fx308.security-mail.net> |X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, | HTML_MESSAGE, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, | TXREP autolearn=ham autolearn_force=no version=3.4.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on | server2.sourceware.org |X-Content-Filtered-By: Mailman/MimeDel 2.1.29 |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |This is the mail system at host fx308.security-mail.net. | |I'm sorry to have to inform you that your message could not |be delivered to one or more recipients. It's attached below. | |For further assistance, please send mail to postmaster. | |If you do so, please include this problem report. You can |delete your own text from the attached returned message. | | The mail system | |: host zimbra2.kalray.eu[195.135.97.26] said: 550 5.1.1 | : Recipient address rejected: User unknown in virtual | mailbox table (in reply to RCPT TO command) | | |Setting custom baudrate for which is not defined Bnnn constant is possible |via BOTHER flag and then filling speed in c_ospeed and c_ispeed fields. | |These two fields are either in struct termios or struct termios2. Former |belongs to TCGETS/TCSETS ioctls, latter to TCGETS2/TCSETS2 ioctls. | |BOTHER flag with these two fields and new struct termios2 is not supported |by older versions of include header files. | |Some architectures (e.g. amd64) provide both struct termios and struct |termios2, but c_ospeed and c_ispeed are only in struct termios2. | |Some other architectures (e.g. alpha) provide both struct termios and struct |termios2 and both have c_ospeed and c_ispeed fields. | |And some other architectures (e.g. powerpc) provide only struct termios |(no struct termios2) and it has c_ospeed and c_ispeed fields. | |So basically to support all architectures it is needed to use |struct termios2 when TCGETS2/TCSETS2 is supported. Otherwise it is needed |to use struct termios with TCGETS/TCSETS (case for e.g. powerpc). | |Setting input baudrate is done via IBSHIFT macro. | |Signed-off-by: Pali Rohár |--- |Changes in v4: |* Add SPDX-License-Identifier |* Correctly process split baudrates (separate output and input) via IBSHIFT |* Update commit message | |Changes in v3: |* Check support for custom baudrate only based on BOTHER macro |* Use TCGETS/TCSETS/termios when TCGETS2/TCSETS2/termios2 is not available | |Changes in v2: |* Use \e for backslash |* Use exit(EXIT_*) instead of return num |* Sort includes |* Add comment about possible fallback |--- | man2/ioctl_tty.2 | 100 +++++++++++++++++++++++++++++++++++++++++++++++ | 1 file changed, 100 insertions(+) | |diff --git a/man2/ioctl_tty.2 b/man2/ioctl_tty.2 |index abfdc1e21fe9..7b2b03ff6757 100644 |--- a/man2/ioctl_tty.2 |+++ b/man2/ioctl_tty.2 -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored