From owner-svn-src-all@freebsd.org Thu Feb 11 17:43:26 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D9C6AA4475; Thu, 11 Feb 2016 17:43:26 +0000 (UTC) (envelope-from bjkfbsd@gmail.com) Received: from mail-wm0-x22f.google.com (mail-wm0-x22f.google.com [IPv6:2a00:1450:400c:c09::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A93EE269; Thu, 11 Feb 2016 17:43:25 +0000 (UTC) (envelope-from bjkfbsd@gmail.com) Received: by mail-wm0-x22f.google.com with SMTP id g62so79249826wme.0; Thu, 11 Feb 2016 09:43:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=9BCkpgLaYnPb5t10KDHYPFzCUXSyY4WKyQ9iPNgXees=; b=HI8P2ww3yG9UYPZ3Dbg6mZ/R9eO2yGdEqPFr4GJf+q4JN8WZtmkRtSBv9I1YiKNNub Xd2Myl1wnW9GUIDs/6G8+oZdgOqiEp8MqYgF8IxFwJywFQpJjDBUj46pigb/mQZAiaqp 7IlQukGBsfBfNvopu7NveFPr1kva4VBNgI3erfKrBkMt6LEfJ+mMpDUH5DH4bbb2fAEa cwg/uFGmZdyeY/BGVDUgNMPVkgpA8uWWW1ey4yBOSrdcjx0kYykqa1DXLyKRY/jeVoFM 6Lfz8tF7ehpyQ+4rABa93R8lkUqyeJempvgvC9Aq3w68dxnGsdVPP7YzY8sYlF5rTdO9 6JOw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=9BCkpgLaYnPb5t10KDHYPFzCUXSyY4WKyQ9iPNgXees=; b=KqFsGhR0vbpWQj90q4oWPr7P6O9IqwJFeuoKBsWiPQckmvFhRYdeZDx/zB1/VlaBmD s8ab9Ln7Ofq/6LPkJsSFV6B5MnOTo6kxBhXCR/BLHg4Zbn+e00pEW1K7IBA1q4lXs4sQ /zygWqLG3oAgp7htOGMX1KJ1thn9wvAXrHifeh2fa2cXYbcwI02Bwtw21TBpoFWpNBOA jXh7ir88+TMVHiozxPQOEf9YT5cjrs6Dk4SZifUH6pFsUnRK7kkQfWwle3Q2fmD/RRsX BuQRs8ivVEypP9uj2FNoNW0z+BHIn+km2yELdTcau9VXb+EmmIu4Wgq6V0oCrRQkVXoN ra0Q== X-Gm-Message-State: AG10YORv2p9EQG2a7XvbpxaVPMg4CXvi+SVMGslkgpAlFmdZiW0gxwZp4elron/Y/G4LTMLevSThXRxFutl3Lw== MIME-Version: 1.0 X-Received: by 10.194.22.101 with SMTP id c5mr53453002wjf.151.1455212604230; Thu, 11 Feb 2016 09:43:24 -0800 (PST) Received: by 10.27.170.11 with HTTP; Thu, 11 Feb 2016 09:43:24 -0800 (PST) In-Reply-To: References: <201601191533.u0JFXSxf037804@repo.freebsd.org> <56BAE4BC.9000105@selasky.org> <56BB5280.5060609@FreeBSD.org> Date: Thu, 11 Feb 2016 11:43:24 -0600 Message-ID: Subject: Re: svn commit: r294327 - in head/sys: dev/cxgb dev/cxgbe dev/e1000 dev/hyperv/netvsc dev/ixgbe dev/mxge netinet sys From: Benjamin Kaduk To: Warner Losh Cc: Pedro Giffuni , Hans Petter Selasky , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , Ryan Stone Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Feb 2016 17:43:26 -0000 On Thu, Feb 11, 2016 at 10:47 AM, Warner Losh wrote: > On Wed, Feb 10, 2016 at 8:08 AM, Pedro Giffuni wrote: > > > If it is faster, is there any good reason to maintain both qsort and > mergesort > in the kernel then? > qsort is not stable; mergesort is. (It's a shame that glibc didn't pick up mergesort.) -Ben