From owner-svn-src-all@freebsd.org Tue May 7 18:12:38 2019 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F13F9158F6D9; Tue, 7 May 2019 18:12:37 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-it1-f176.google.com (mail-it1-f176.google.com [209.85.166.176]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 880BE6E70B; Tue, 7 May 2019 18:12:37 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-it1-f176.google.com with SMTP id l7so931632ite.2; Tue, 07 May 2019 11:12:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:reply-to :from:date:message-id:subject:to:cc; bh=qS+nGxJLFiEVXcx9jRzH2RrCqy1jt3YHLgYO5pdVSvM=; b=nDnIC0jWbzDnqlqdzUcTXaiK2wnb0CqPXfS3YPJMzzUTY/kNtsIAIzA+rlFNXQn7Ci nHQLKuN9+lIFuIYADcug09iLCX/+4ucuUyYa60JBqcwj0Mc0wqp8XHQ6pPpeDA6n+s9i gsRtybU8QSJddGXLwpR+Uvz8N889r48UadVZR9AtAWpMI3TIcMD04ssCI1rUtARNSVrR 5tm9E6ZQqRR2XeayZ/x0NGAR4ENrqYJ0JTRm7Kj6pR1SC5vNMJ445OORdhXcacaFP+IH E1RwII6gSXfdVu5VYU2SQAXYlq6taKxvWlFZJwejsKAgRU7lG327iNNFZfusByqKb9+l sqjA== X-Gm-Message-State: APjAAAVmlcbvHVPV6Y53jrzrPQdL99Kx5+JZooWlEQYSULI1hygsTCcZ dCAJSdFSQqvxLKW5zW/wS8zoYp1V X-Google-Smtp-Source: APXvYqxhYuk4MecfzasERV3Jxp/fwezldFvb7y9jx+v8xzNv2qOjTCKCW0ovo9UTUkdMXXr8h9Si8A== X-Received: by 2002:a02:1dc7:: with SMTP id 190mr22914953jaj.62.1557252750898; Tue, 07 May 2019 11:12:30 -0700 (PDT) Received: from mail-io1-f45.google.com (mail-io1-f45.google.com. [209.85.166.45]) by smtp.gmail.com with ESMTPSA id 70sm3678437itz.42.2019.05.07.11.12.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 May 2019 11:12:30 -0700 (PDT) Received: by mail-io1-f45.google.com with SMTP id v7so8620772iob.10; Tue, 07 May 2019 11:12:30 -0700 (PDT) X-Received: by 2002:a05:6602:218f:: with SMTP id b15mr2309330iob.233.1557252750398; Tue, 07 May 2019 11:12:30 -0700 (PDT) MIME-Version: 1.0 References: <201905071747.x47HlKTh012163@repo.freebsd.org> In-Reply-To: <201905071747.x47HlKTh012163@repo.freebsd.org> Reply-To: cem@freebsd.org From: Conrad Meyer Date: Tue, 7 May 2019 11:12:19 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r347229 - in head: lib/libsbuf lib/libsbuf/tests share/man/man9 sys/kern sys/sys To: Conrad Meyer Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-Rspamd-Queue-Id: 880BE6E70B X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; REPLY(-4.00)[]; TAGGED_FROM(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 07 May 2019 18:12:38 -0000 One correction On Tue, May 7, 2019 at 10:47 AM Conrad Meyer wrote: > Author: cem > Date: Tue May 7 17:47:20 2019 > New Revision: 347229 > URL: https://svnweb.freebsd.org/changeset/base/347229 > > Log: > device_printf: Use sbuf for more coherent prints on SMP > > device_printf does multiple calls to printf allowing other console > messages to > be inserted between the device name, and the rest of the message. This > change > uses sbuf to compose to two into a single buffer, and prints it all at > once. > > It exposes an sbuf drain function (drain-to-printf) for common use. > > Update documentation to match; some unit tests included. > > Submitted by: jmg > Sponsored by: Dell EMC Isilon ^^^ Sorry, I added this on autopilot. It was fully jmg@=E2=80=98s work. > Differential Revision: https://reviews.freebsd.org/D16690 >