can't find file to patch at input line 117 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Mon Nov 22 16:43:03 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 7bit |X-Patchwork-Submitter: Cyril Hrubis |X-Patchwork-Id: 48001 |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 185D43857C7A | for ; Mon, 22 Nov 2021 16:43:33 +0000 (GMT) |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) | by sourceware.org (Postfix) with ESMTPS id 9A5FC385800B | for ; Mon, 22 Nov 2021 16:41:58 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 9A5FC385800B |Authentication-Results: sourceware.org; | dmarc=none (p=none dis=none) header.from=suse.cz |Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz |Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de | [192.168.254.74]) | (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) | key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) | (No client certificate requested) | by smtp-out2.suse.de (Postfix) with ESMTPS id CB67E1FD49; | Mon, 22 Nov 2021 16:41:57 +0000 (UTC) |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; | s=susede2_rsa; | t=1637599317; | h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: | mime-version:mime-version:content-type:content-type; | bh=1woxrA4xZsptnquer4Gd0ugpmny7b62MqMTzjlRKhrs=; | b=D9QD+7iDWjdfAk65X8/3PTFr/OHdtPtlpvfV0tZR9xcTgh5lTUluNMBjucbRbgSRWhk2jf | LQlsZMlWX2aUb3Gic2XA8WnBuShvspt99dFN3fw720k+GmZ2QRafuLH8UU40R5iGDqWWID | GpvqB2B5Bwz3k4qqdyQfae5L0wiZSY8= |DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; | s=susede2_ed25519; t=1637599317; | h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: | mime-version:mime-version:content-type:content-type; | bh=1woxrA4xZsptnquer4Gd0ugpmny7b62MqMTzjlRKhrs=; | b=3FteXPHki4q4uD48zVbf3yuog6NKkm53zGV0HFAWyCo8kWIA1sH+rV7nGrGQPr7IQr/KEY | tQq0zRK/ob9G4pBQ== |Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de | [192.168.254.74]) | (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) | key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) | (No client certificate requested) | by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id AAB2413B44; | Mon, 22 Nov 2021 16:41:57 +0000 (UTC) |Received: from dovecot-director2.suse.de ([192.168.254.65]) | by imap2.suse-dmz.suse.de with ESMTPSA id pZdDKFXIm2GHNwAAMHmgww | (envelope-from ); Mon, 22 Nov 2021 16:41:57 +0000 |Date: Mon, 22 Nov 2021 17:43:03 +0100 |From: Cyril Hrubis |To: linux-kernel@vger.kernel.org |Subject: [PATCH] uapi: Make __{u,s}64 match {u,}int64_t in userspace |Message-ID: |MIME-Version: 1.0 |Content-Disposition: inline |X-Spam-Status: No, score=-10.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, | DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, SPF_HELO_NONE, | SPF_PASS, | 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-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: , | |Cc: linux-arch@vger.kernel.org, linux-api@vger.kernel.org, | libc-alpha@sourceware.org, ltp@lists.linux.it |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |This changes the __u64 and __s64 in userspace on 64bit platforms from |long long (unsigned) int to just long (unsigned) int in order to match |the uint64_t and int64_t size in userspace. | |This allows us to use the kernel structure definitions in userspace. For |example we can use PRIu64 and PRId64 modifiers in printf() to print |structure members. Morever with this there would be no need to redefine |these structures in libc implementations as it is done now. | |Consider for example the newly added statx() syscall. If we use the |header from uapi we will get warnings when attempting to print it's |members as: | | printf("%" PRIu64 "\n", stx.stx_size); | |We get: | | warning: format '%lu' expects argument of type 'long unsigned int', | but argument 5 has type '__u64' {aka 'long long unsigned int'} | |After this patch the types match and no warnings are generated. | |Signed-off-by: Cyril Hrubis |Acked-by: Alejandro Colomar |--- | include/uapi/asm-generic/types.h | 11 +++++++++-- | 1 file changed, 9 insertions(+), 2 deletions(-) | |diff --git a/include/uapi/asm-generic/types.h b/include/uapi/asm-generic/types.h |index dfaa50d99d8f..ae748a3678a4 100644 |--- a/include/uapi/asm-generic/types.h |+++ b/include/uapi/asm-generic/types.h -------------------------- File to patch: Skip this patch? [y] Skipping patch. 1 out of 1 hunk ignored