Received: from makus.postgresql.org (makus.postgresql.org [98.129.198.125]) by mail.postgresql.org (Postfix) with ESMTP id C8F5EEC7B28 for ; Fri, 6 Jul 2012 17:21:51 -0300 (ADT) Received: from mail-ob0-f174.google.com ([209.85.214.174]) by makus.postgresql.org with esmtp (Exim 4.72) (envelope-from ) id 1SnF2E-0000cu-FD for pgsql-docs@postgresql.org; Fri, 06 Jul 2012 20:21:51 +0000 Received: by obbuo13 with SMTP id uo13so15624454obb.19 for ; Fri, 06 Jul 2012 13:21:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=y9Jlit3h+2APOd+B//kOGNRdHRQGJtGCmTTBq8CCmOQ=; b=fNy0NyXxJNb8FAjVupyU/ecSCyzf0lhY25/s/57KnzwO0iYbqGHz72ApPbZUe7UiY9 5H21vMJEgJoj0rxYICvdefJTcEVrCPXKVdcpIqFp8tjqj0/okZyYDJ9k4c0H3SeKGh4P KjPx6Y03UCypTTZgO4TtxCAXT0Il6Sr/ttiiU1S/maaRxj4K7MmxLXqtVo/+qneceIo9 IXuhTu1AjqFbeexs346yAsgcFOD1MNI+o2xjGHvXk/+5zVlpOeZj5DF8hGMMtEAdWJZ9 DjiT9eHqaXQgjf09EK/SdVOVuOVoJE9pfSCF4gAQf7Vrcm5i1b0TUDYRwanNgGbcBSXE wvCA== Received: by 10.60.30.35 with SMTP id p3mr30729386oeh.16.1341606097573; Fri, 06 Jul 2012 13:21:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.60.146.180 with HTTP; Fri, 6 Jul 2012 13:21:17 -0700 (PDT) From: Josh Kupershmidt Date: Fri, 6 Jul 2012 13:21:17 -0700 Message-ID: Subject: pgtesttiming.sgml, FreeBSD command output To: pgsql-docs Content-Type: text/plain; charset=ISO-8859-1 X-Pg-Spam-Score: -2.6 (--) X-Archive-Number: 201207/9 X-Sequence-Number: 7383 I noticed this little snippet claiming to be output on FreeBSD in pgtesttiming.sgml: dmesg | grep "Timecounter" sysctl kern.timecounter.hardware=TSC First, grep is case-sensitive by default, so that line of output shouldn't have matched at all, right? Second, if I actually try the above command on a FreeBSD 9 VM I have, I get (copying by hand, since I can't seem to copy-and-paste out of this VM without X, please excuse any typos): Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 Timecounter "i8254" frequency 1193182 Hz quality 0 Timecounters tick every 10.000 msec Timecounter "TSC" frequency 2531787134 Hz quality 800 Anyway, if the original "sysctl ..." output is valid for a FreeBSD machine, maybe only the grep command needs to be fixed (i.e. to "grep -i ...") ? Josh