From owner-svn-src-all@freebsd.org Sun Jun 4 23:28:07 2017 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 427CABF26BE; Sun, 4 Jun 2017 23:28:07 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-it0-x22b.google.com (mail-it0-x22b.google.com [IPv6:2607:f8b0:4001:c0b::22b]) (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 19702652F1; Sun, 4 Jun 2017 23:28:07 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-it0-x22b.google.com with SMTP id m62so47405729itc.0; Sun, 04 Jun 2017 16:28:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=d4vkY4sWqUF5aZZs0sFFBD1gspWHcRxynLIzdzNaz5s=; b=donIDBFcBxVU5tvG+MT5WkvbzhEka4EKvHhcbSqWHKfMJ78WuvVJ5VG3VBpbZga3ov 2mUXi4lbPu2Z4oihl/yRonj/dbGBlan2/pByh4WE42pgHWzi4NhXodyxwu+Cm8z1a/7G 3KPX7BRw44fu5YDfidImcTZP8OwtztJ4DnsJiU1ZfFPda7zjGzKOOHCFta3JGMfCF+X5 UzpucdH/N9xwrocX6AsvlqEai1UfS7BhvQoqSpZkAhrQdoi7ronjWVYI5KWu6OmXjRr4 nIGdZ2GBOBU7SFYjejw7D3SX9iE+s1BcKdeCPCjR8JPFznDWlrWuW9wpna/dYAdasN0z 9Z7A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=d4vkY4sWqUF5aZZs0sFFBD1gspWHcRxynLIzdzNaz5s=; b=k7BThYw+lbsAn/2uC6iGirCLn2nNsf3ozSQm12u54HNq9L/Gd13b/8otI63PZV0tWd 9naCUfAqk2a+NAYITT8+w7gVJkphrsk9YBBeOkwW1Hzdq5jLYuEt2VI1UyWmmhj9kZjm rJd/Xkj6NzPtvPNhCE8CLiW+hjvj/DbD7TEnImDN9alS8dGoG+1JdS+H7aRXHDAb0+Vc cvW+dvnLcMxmgrsGHkXX0cOQaBJpZqptidV8YP25jTpfUJRGEkMQqq6U2ZAn8PexJ6Jm PioVIcHdelJB9f0lVJbuvSLmq4pyYUZZp1VRX5k0ZCEJ5cDxV8n6gk5zwqAw9HbpHGdq Es5Q== X-Gm-Message-State: AODbwcCelXgTj300vGnvCSs2GF/+04Kvc9L2Z5I3Ib9hY/BL8+1rxFSl fYP9aT5ba/7CVclZy40FkiellpP0NFlP X-Received: by 10.107.170.99 with SMTP id t96mr11884818ioe.113.1496618886381; Sun, 04 Jun 2017 16:28:06 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.169.201 with HTTP; Sun, 4 Jun 2017 16:27:45 -0700 (PDT) In-Reply-To: <543a4144-4f08-8742-5455-0103569d9f4f@FreeBSD.org> References: <201706021839.v52IdrZJ074478@repo.freebsd.org> <20170603161546.D939@besplex.bde.org> <543a4144-4f08-8742-5455-0103569d9f4f@FreeBSD.org> From: Ed Maste Date: Sun, 4 Jun 2017 19:27:45 -0400 X-Google-Sender-Auth: 8413oTSfhLqwow3J_qQqrdt2_LU Message-ID: Subject: Re: svn commit: r319507 - head/sys/fs/msdosfs To: Bryan Drewery Cc: Bruce Evans , "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 04 Jun 2017 23:28:07 -0000 On 4 June 2017 at 14:06, Bryan Drewery wrote: > > In r189170. It seems to me we should change systm.h back to a macro > #define memmove(dst, src, len) bcopy((src), (dst), (len)) Note that they're not quite equivalent: memmove returns dst, while bcopy has no return value.