From owner-svn-src-all@freebsd.org Thu Jun 18 17:54:07 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BA02C35679B; Thu, 18 Jun 2020 17:54:07 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-ot1-f53.google.com (mail-ot1-f53.google.com [209.85.210.53]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49nqLl2mZBz3X6P; Thu, 18 Jun 2020 17:54:07 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-ot1-f53.google.com with SMTP id k15so5230463otp.8; Thu, 18 Jun 2020 10:54:07 -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=qf6MWeyzaCGI3CBBBerdKwGI7FAV9KGe3vhVVbQ9SFA=; b=OQAqUyXC3V77iEJzzm5AVU291XSUm1mfjjGqEixxDF9EPDpkwXh2WLlxrUDsvrI9WM LtyPal7MMuMZMuzPYQyRcW6fatslFtzsrZ+PrGTuOrFk0IJau3nCcFLf+ZGkSbMaPPnV P6oVeq5NLsB2QpVsE/qwSs5mYUp4fSzPwvo5KdmjZeq5bJQ0bL+JXbGIG+jD3O32/XKK blAD6Hp7FtpihKl3uAIXhNgjaKYDnBdbgCp5ZJIigd/OuN7YbLjIc7u9PlqUVLJPd7iL 4pkpi8hZedgUIT7yVhI5Qp28GsuZQIpuFvuXgpoEsjm8ndkyviCiaTvKkw7m1DwRaxjf BifQ== X-Gm-Message-State: AOAM5301RbztUfqXMshM1TXx20F3TNh2DR/iNvPx6FZGxz5LLCaHXtqd uzAvJ3nGAw4mn3e85E4Pfq+R3eFd X-Google-Smtp-Source: ABdhPJw+0xpzEHmlncKRci+Y+rSsgmpXNNK87Y6LYMEE9AOpkr9dZlrVuDPTm9vPE+0syRIZMObnvQ== X-Received: by 2002:a9d:62da:: with SMTP id z26mr4800117otk.369.1592502846130; Thu, 18 Jun 2020 10:54:06 -0700 (PDT) Received: from mail-ot1-f49.google.com (mail-ot1-f49.google.com. [209.85.210.49]) by smtp.gmail.com with ESMTPSA id g3sm854033oov.21.2020.06.18.10.54.04 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 18 Jun 2020 10:54:05 -0700 (PDT) Received: by mail-ot1-f49.google.com with SMTP id u23so5226239otq.10; Thu, 18 Jun 2020 10:54:04 -0700 (PDT) X-Received: by 2002:a9d:2224:: with SMTP id o33mr4667703ota.216.1592502844511; Thu, 18 Jun 2020 10:54:04 -0700 (PDT) MIME-Version: 1.0 References: <202006122153.05CLr8JN091722@repo.freebsd.org> In-Reply-To: Reply-To: cem@freebsd.org From: Conrad Meyer Date: Thu, 18 Jun 2020 10:53:53 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r362126 - head/sys/vm To: John Baldwin Cc: Eric van Gyzen , src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 49nqLl2mZBz3X6P X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:15169, ipnet:209.85.128.0/17, country:US]; TAGGED_FROM(0.00)[] X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 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, 18 Jun 2020 17:54:07 -0000 On Thu, Jun 18, 2020 at 10:19 AM John Baldwin wrote: > > On 6/17/20 5:48 PM, Conrad Meyer wrote: > > db_printf checks the pager, via db_putc. > > It doesn't break out of the loops for you though (e.g. via setjmp or the > like). Commands still have to check db_pager_quit directly if they wish > to abort early to honor a user entering 'q' at the pager prompt. It does for Ctrl-C, but not 'q', true. It could easily do the same for 'q' as Ctrl-C: db_error(NULL) => kdb_reenter_silent().