From nobody Sun Nov 05 18:28:01 2023 X-Original-To: dev-commits-src-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4SNjf91sxxz4ysrx; Sun, 5 Nov 2023 18:28:17 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-lf1-f50.google.com (mail-lf1-f50.google.com [209.85.167.50]) (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 1D4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4SNjf900rkz3W1W; Sun, 5 Nov 2023 18:28:17 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: by mail-lf1-f50.google.com with SMTP id 2adb3069b0e04-507973f3b65so4945277e87.3; Sun, 05 Nov 2023 10:28:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1699208894; x=1699813694; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=bCKMDlGzNvhirG4SkKwcXqLuL97vXyEDS0F7KM3gfpI=; b=RLsoMHXJeeILuCsQZX9PpNRi8yrglTn24gpfZY2k2SajnT7tgtS3EZziwOas4IhJZq bAimBvSoyt+K+X3wYdAIhC69/MTns+/UIMqs79gr1NQ5Oqd34HCxVHiuMs+6nesKUCGA Czl28yt3R+QY7yFEZrGumRzV5TTpRpIifegUCCt9AmtylU3N/QrhJxaVFEP13V8m+Sjc psgQVZkNa20Ikcj/gFWs+bISoSvwwDP4j6Kc7DB5oox0aj55tuETPLFEOlT8A8/oySFe JDZAgYQUd/Ddg7JrxIcJ8OI+8RGnyvtYBjGyZgYCo81ctXpRnEtiFOCCEroT7lf8Rwop 4oig== X-Gm-Message-State: AOJu0Yw+pmI5V+5dEWnSziKo2mDXlfrtnim4HLe7S23vIhZn+dRzgr+N OFRlru27fLeiFGfhuW5vWG8m8Hi2sV9C2RjZ+CITgFAqQRY= X-Google-Smtp-Source: AGHT+IHb2XA/t5LxEHPbeAKyL3U5IQXluYAMJuow3x99YIHQM6YdccVVy9j5E4yTkSV+XTXc2JCDNIYQtXYarwA6ocw= X-Received: by 2002:ac2:4c43:0:b0:509:4aae:f2b1 with SMTP id o3-20020ac24c43000000b005094aaef2b1mr9162843lfk.8.1699208893863; Sun, 05 Nov 2023 10:28:13 -0800 (PST) List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-all@freebsd.org X-BeenThere: dev-commits-src-all@freebsd.org MIME-Version: 1.0 References: <202311051423.3A5ENsLB020135@gitrepo.freebsd.org> In-Reply-To: <202311051423.3A5ENsLB020135@gitrepo.freebsd.org> From: Ed Maste Date: Sun, 5 Nov 2023 13:28:01 -0500 Message-ID: Subject: Re: git: b10ae5a9b21a - main - tcp rack: remove references to rb trees To: Michael Tuexen Cc: src-committers@freebsd.org, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated 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] X-Rspamd-Queue-Id: 4SNjf900rkz3W1W On Sun, 5 Nov 2023 at 09:24, Michael Tuexen wrote: > > The branch main has been updated by tuexen: > > URL: https://cgit.FreeBSD.org/src/commit/?id=b10ae5a9b21aa11e96a1951ccc4525dd1fdb60b3 > > commit b10ae5a9b21aa11e96a1951ccc4525dd1fdb60b3 > Author: Michael Tuexen > AuthorDate: 2023-11-05 14:21:06 +0000 > Commit: Michael Tuexen > CommitDate: 2023-11-05 14:21:06 +0000 > > tcp rack: remove references to rb trees > > The references should have been removed in > https://cgit.freebsd.org/src/commit/?id=030434acaf4631c4e205f8bccedcc7f845cbfcbf Note that there's a `Fixes` commit message trailer that can be used for this purpose, e.g. Fixes: 030434acaf46 ("Update rack to the latest code used at NF.") The benefit of using this format is that there are tools to a repository to find commits with "Fixes" entries that have not been cherry-picked - e.g. https://github.com/joergroedel/git-fixes. Also, having the original commit message subject line (in addition to the hash) may be useful if we migrate from Git to something else in the future.