From patchwork Sun May 19 16:15:21 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aleksandar Markovic X-Patchwork-Id: 10949483 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 33E761390 for ; Sun, 19 May 2019 16:16:32 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 17F1F28500 for ; Sun, 19 May 2019 16:16:32 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 087F3284C9; Sun, 19 May 2019 16:16:32 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 361972849B for ; Sun, 19 May 2019 16:16:31 +0000 (UTC) Received: from localhost ([127.0.0.1]:50677 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSOU9-00061T-Tm for patchwork-qemu-devel@patchwork.kernel.org; Sun, 19 May 2019 12:16:29 -0400 Received: from eggs.gnu.org ([209.51.188.92]:44359) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSOTN-0005I5-Vv for qemu-devel@nongnu.org; Sun, 19 May 2019 12:15:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSOTN-0005jS-1G for qemu-devel@nongnu.org; Sun, 19 May 2019 12:15:41 -0400 Received: from mx2.rt-rk.com ([89.216.37.149]:52692 helo=mail.rt-rk.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hSOTM-0005hi-Fq for qemu-devel@nongnu.org; Sun, 19 May 2019 12:15:40 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.rt-rk.com (Postfix) with ESMTP id 77A271A202F; Sun, 19 May 2019 18:15:37 +0200 (CEST) X-Virus-Scanned: amavisd-new at rt-rk.com Received: from rtrkw774-lin.domain.local (rtrkw774-lin.domain.local [10.10.13.43]) by mail.rt-rk.com (Postfix) with ESMTPSA id 550601A1182; Sun, 19 May 2019 18:15:37 +0200 (CEST) From: Aleksandar Markovic To: qemu-devel@nongnu.org Date: Sun, 19 May 2019 18:15:21 +0200 Message-Id: <1558282527-22183-1-git-send-email-aleksandar.markovic@rt-rk.com> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 89.216.37.149 Subject: [Qemu-devel] [PATCH v6 0/6] linux-user: A set of miscellaneous patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: lvivier@redhat.com, thuth@redhat.com, jcmvbkbc@gmail.com, arikalo@wavecomp.com, daniel.santos@pobox.com, amarkovic@wavecomp.com, nchen@wavecomp.com, philmd@redhat.com, aurelien@aurel32.net Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Aleksandar Markovic This is a collection of misc patches for Linux user that I recently accumulated from variuous sources. All of them originate from problems observed on mips target. However, these changes actually affect and fix problems on multiple targets. v5->v6: - fixed a mistake in patch #4 - improved commit messages in patches #4 and #6 v4->v5: - added the patch on statx() support - improved the patch on IPV6__MEMBERSHIP to take into account the possibility of different names for a field - minor corrections in commit messages v3->v4: - improved commit messages (fixed some typos, improved relevance) v2->v3: - updated and improved commit messages - added IPV6_DROP_MEMBERSHIP support to the patch on setsockopt()'s option v1->v2: - added the patch on setsockopt()'s option IPV6_ADD_MEMBERSHIP - improved the commit message of interp_info sanitizing patch Aleksandar Markovic (2): linux-user: Fix support for SIOCATMARK and SIOCGPGRP ioctls for xtensa linux-user: Add support for SIOCSPGRP ioctl for all targets Aleksandar Rikalo (1): linux-user: Add support for statx() syscall Daniel Santos (1): linux-user: Sanitize interp_info and, for mips only, init field fp_abi Neng Chen (2): linux-user: Add support for SIOCIFPFLAGS ioctls for all targets linux-user: Add support for setsockopt() options IPV6__MEMBERSHIP linux-user/elfload.c | 5 ++ linux-user/ioctls.h | 3 + linux-user/syscall.c | 158 +++++++++++++++++++++++++++++++++++++++++++++- linux-user/syscall_defs.h | 45 ++++++++++++- 4 files changed, 209 insertions(+), 2 deletions(-)