From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5D2AAC04AB4 for ; Sun, 19 May 2019 16:16:50 +0000 (UTC) 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.kernel.org (Postfix) with ESMTPS id 2962A21851 for ; Sun, 19 May 2019 16:16:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2962A21851 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=rt-rk.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([127.0.0.1]:50677 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSOUT-00061T-CF for qemu-devel@archiver.kernel.org; Sun, 19 May 2019 12:16:49 -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+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" 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(-) -- 2.7.4