From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 00:07:00 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id 89A7B7FE;
Sun, 12 Apr 2015 00:07:00 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id 75591A70;
Sun, 12 Apr 2015 00:07:00 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3C070G7018236;
Sun, 12 Apr 2015 00:07:00 GMT (envelope-from imp@FreeBSD.org)
Received: (from imp@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3C070ws018235;
Sun, 12 Apr 2015 00:07:00 GMT (envelope-from imp@FreeBSD.org)
Message-Id: <201504120007.t3C070ws018235@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: imp set sender to imp@FreeBSD.org
using -f
From: Warner Losh
Date: Sun, 12 Apr 2015 00:07:00 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46517 - head/en_US.ISO8859-1/books/arch-handbook/scsi
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 00:07:00 -0000
Author: imp
Date: Sun Apr 12 00:06:59 2015
New Revision: 46517
URL: https://svnweb.freebsd.org/changeset/doc/46517
Log:
Update some obsolete references in the CAM / SCSI stuff.
Modified:
head/en_US.ISO8859-1/books/arch-handbook/scsi/chapter.xml
Modified: head/en_US.ISO8859-1/books/arch-handbook/scsi/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/arch-handbook/scsi/chapter.xml Sun Apr 12 00:06:58 2015 (r46516)
+++ head/en_US.ISO8859-1/books/arch-handbook/scsi/chapter.xml Sun Apr 12 00:06:59 2015 (r46517)
@@ -147,7 +147,7 @@
struct cam_sim *sim;
if(( sim = cam_sim_alloc(action_func, poll_func, driver_name,
- softc, unit, max_dev_transactions,
+ softc, unit, mtx, max_dev_transactions,
max_tagged_dev_transactions, devq) )==NULL) {
cam_simq_free(devq);
error; /* some code to handle the error */
@@ -217,11 +217,18 @@
unit - the controller unit number, for example
- for controller wds0
this number will be
+ for controller mps0
this number will be
0
+ mtx - Lock associated with this SIM. For SIMs that don't
+ know about locking, pass in Giant. For SIMs that do, pass in
+ the lock used to guard this SIM's data structures. This lock
+ will be held when xxx_action and xxx_poll are called.
+
+
+
max_dev_transactions - maximal number of simultaneous
transactions per SCSI target in the non-tagged mode. This
value will be almost universally equal to 1, with possible
@@ -248,7 +255,7 @@
Finally we register the SCSI buses associated with our SCSI
adapterSCSIadapter:
- if(xpt_bus_register(sim, bus_number) != CAM_SUCCESS) {
+ if(xpt_bus_register(sim, softc, bus_number) != CAM_SUCCESS) {
cam_sim_free(sim, /*free_devq*/ TRUE);
error; /* some code to handle the error */
}
@@ -505,6 +512,11 @@
back to CAM). This flag is not used anywhere in the CAM
code now, so its purpose is purely diagnostic.
+
+
+ CAM_QOS_VALID - The QOS data
+ is now valid.
+
The function xxx_action() is not
@@ -728,27 +740,14 @@
CCB or pointed to, in the latter case the pointer may be
physical or virtual. Since the hardware commonly needs
physical address we always convert the address to the
- physical one.
+ physical one, typically using the busdma API.
- A NOT-QUITE RELATED NOTE: Normally this is done by a
- call to vtophys(), but for the PCI
- device (which account for most of the SCSI controllers now)
- drivers' portability to the Alpha architecture the
- conversion must be done by vtobus()
- instead due to special Alpha quirks. [IMHO it would be much
- better to have two separate functions,
- vtop() and
- ptobus() then
- vtobus() would be a simple
- superposition of them.] In case if a physical address is
+ In case if a physical address is
requested it is OK to return the CCB with the status
CAM_REQ_INVALID, the current drivers
- do that. But it is also possible to compile the
- Alpha-specific piece of code, as in this example (there
- should be a more direct way to do that, without conditional
- compilation in the drivers). If necessary a physical
- address can be also converted or mapped back to a virtual
- address but with big pain, so we do not do that.
+ do that. If necessary a physical address can be also
+ converted or mapped back to a virtual address but with
+ big pain, so we do not do that.
if(ccb_h->flags & CAM_CDB_POINTER) {
/* CDB is a pointer */
@@ -757,11 +756,7 @@
hcb->cmd = vtobus(csio->cdb_io.cdb_ptr);
} else {
/* CDB pointer is physical */
-#if defined(__alpha__)
- hcb->cmd = csio->cdb_io.cdb_ptr | alpha_XXX_dmamap_or ;
-#else
hcb->cmd = csio->cdb_io.cdb_ptr ;
-#endif
}
} else {
/* CDB is in the ccb (buffer) */
From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 00:06:59 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id F3AE87FD;
Sun, 12 Apr 2015 00:06:58 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id DFFF4A6F;
Sun, 12 Apr 2015 00:06:58 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3C06wrK018190;
Sun, 12 Apr 2015 00:06:58 GMT (envelope-from imp@FreeBSD.org)
Received: (from imp@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3C06wvd018189;
Sun, 12 Apr 2015 00:06:58 GMT (envelope-from imp@FreeBSD.org)
Message-Id: <201504120006.t3C06wvd018189@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: imp set sender to imp@FreeBSD.org
using -f
From: Warner Losh
Date: Sun, 12 Apr 2015 00:06:58 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46516 - head/en_US.ISO8859-1/htdocs
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 00:06:59 -0000
Author: imp
Date: Sun Apr 12 00:06:58 2015
New Revision: 46516
URL: https://svnweb.freebsd.org/changeset/doc/46516
Log:
Note explicitly that ARMv7 is also supported.
Modified:
head/en_US.ISO8859-1/htdocs/where.xml
Modified: head/en_US.ISO8859-1/htdocs/where.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/where.xml Sat Apr 11 04:44:58 2015 (r46515)
+++ head/en_US.ISO8859-1/htdocs/where.xml Sun Apr 12 00:06:58 2015 (r46516)
@@ -27,7 +27,7 @@
older, 32-bit only model, use i386. For embedded devices and
single-board computers (SBC) such as the Raspberry Pi, Beagle
Bone Black, Panda Board, and Zed Board, use the armv6 SD card
- image.
+ image which supports ARMv6 and ARMv7 processors..
From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 20:22:17 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id F152AB72;
Sun, 12 Apr 2015 20:22:16 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id D2F28160;
Sun, 12 Apr 2015 20:22:16 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3CKMGvn094225;
Sun, 12 Apr 2015 20:22:16 GMT (envelope-from bjk@FreeBSD.org)
Received: (from bjk@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3CKMGoi094224;
Sun, 12 Apr 2015 20:22:16 GMT (envelope-from bjk@FreeBSD.org)
Message-Id: <201504122022.t3CKMGoi094224@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bjk set sender to bjk@FreeBSD.org
using -f
From: Benjamin Kaduk
Date: Sun, 12 Apr 2015 20:22:16 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46518 - head/en_US.ISO8859-1/htdocs/news/status
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 20:22:17 -0000
Author: bjk
Date: Sun Apr 12 20:22:15 2015
New Revision: 46518
URL: https://svnweb.freebsd.org/changeset/doc/46518
Log:
Add the ASLR report
Approved by: hrs (mentor, implicit)
Modified:
head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 00:06:59 2015 (r46517)
+++ head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:22:15 2015 (r46518)
@@ -83,4 +83,71 @@
Miscellaneous
+
+ Address Space Layout Randomization (ASLR)
+
+
+
+
+ Shawn
+ Webb
+
+ shawn.webb@hardenedbsd.org
+
+
+
+ Oliver
+ Pinter
+
+ oliver.pinter@hardenedbsd.org
+
+
+
+
+ HardenedBSD
+ ASLR Call For Testing
+ FreeBSD Code Review of ASLR
+
+
+
+ Address Space Layout Randomization (ASLR) is a
+ computer security technique that aids in mitigating
+ low-level vulnerabilities such as buffer overflows.
+ ASLR randomizes the memory layout of running
+ applications to prevent an attacker from knowing where
+ a given exploitable vulnerability lies in memory.
+
+ We have been working hard the last few months to ensure
+ the robustness of our ASLR implementation. We have
+ written a helpful manpage. We have updated the patch on
+ FreeBSD's code review system (Phabricator). Our ASLR
+ implementation is in heavy use by the HardenedBSD team
+ in production environments and is performing
+ robustly.
+
+ The next task is to compile the base system applications as
+ Position-Independent Executables (PIEs). In order for
+ ASLR to be effective, applications must be compiled as
+ PIEs. It is likely that this part will take a long time
+ to accomplish, given the complexity surrounding
+ building the libraries in the base system. Even if applications
+ are not compiled as PIEs, having ASLR available still
+ helps those applications (like HardenedBSD's secadm)
+ which force compilation as PIE for themselves.
+
+
+ SoldierX
+
+
+
+ Test our patch against 11-CURRENT.
+
+
+
+ For &os; committers: work with us to get this merged
+ into &os;.
+
+
+
+
From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 20:35:36 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id EFDCCF34;
Sun, 12 Apr 2015 20:35:35 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id DB2CF27D;
Sun, 12 Apr 2015 20:35:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3CKZZSs099562;
Sun, 12 Apr 2015 20:35:35 GMT (envelope-from bjk@FreeBSD.org)
Received: (from bjk@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3CKZZnM099561;
Sun, 12 Apr 2015 20:35:35 GMT (envelope-from bjk@FreeBSD.org)
Message-Id: <201504122035.t3CKZZnM099561@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bjk set sender to bjk@FreeBSD.org
using -f
From: Benjamin Kaduk
Date: Sun, 12 Apr 2015 20:35:35 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46519 - head/en_US.ISO8859-1/htdocs/news/status
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 20:35:36 -0000
Author: bjk
Date: Sun Apr 12 20:35:34 2015
New Revision: 46519
URL: https://svnweb.freebsd.org/changeset/doc/46519
Log:
Add Xfce report
Approved by: hrs (mentor, implicit)
Modified:
head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:22:15 2015 (r46518)
+++ head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:35:34 2015 (r46519)
@@ -150,4 +150,86 @@
+
+ Xfce on &os;
+
+
+
+ &os; Xfce Team
+ xfce@FreeBSD.org
+
+
+
+
+
+
+
+
+ Xfce is a free software desktop environment for Unix and
+ Unix-like platforms, such as &os;. It aims to be fast and
+ lightweight, while still being visually appealing and easy to
+ use.
+
+ This quarter was an exciting time for the Xfce Team. We
+ imported the Xfce desktop environment 4.12 into the ports
+ tree, after more than two years of development.
+
+ Overall, we have updated the following ports:
+
+
+ - Xfce core (4.12)
+ - audio/xfce4-mpc-plugin (0.4.5)
+ - deskutils/xfce4-tumbler (0.1.31
+ - deskutils/xfce4-xkb-plugin (0.7.1)
+ - editors/mousepad (0.4.0)
+ - graphics/ristretto (0.8.0)
+ - multimedia/xfce4-parole (0.8.0)
+ - sysutils/garcon (0.4.0)
+ - sysutils/xfce4-diskperf-plugin (2.5.5)
+ - sysutils/xfce4-fsguard-plugin (1.0.2)
+ - sysutils/xfce4-power-manager (1.4.4)
+ - sysutils/xfce4-wavelan-plugin (0.5.12)
+ - textproc/xfce4-dict-plugin (0.7.1)
+ - www/xfce4-smartbookmark-plugin (0.4.6)
+ - x11/libexo (0.10.4)
+ - x11-clocks/xfce4-timer-out-plugin (1.0.2)
+ - x11-fm/thunar (1.6.6)
+ - x11-themes/gtk-xfce-engine (3.2.0)
+
+
+ At the same time we switched to the USES framework, and a new
+ plugin has been added, called
+ audio/xfce4-pulseaudio-plugin.
+
+ We also follow the unstable releases (available in our
+ experimental repository) of:
+
+
+ - x11/xfce4-dashboard (0.3.91)
+ - x11/xfce4-notes-plugin (1.8.0 beta)
+
+
+ The following documentation patches are ready:
+
+ - PR197878,
+ Update Xfce section in Porter's Handbook
+ - D1305, FAQ
+
+
+
+
+
+ Work on support for Compact Disc Digital Audio (CD-DA) in
+ multimedia/xfce4-parole.
+
+
+
+ Add a new property (through xfconf-query) in order to
+ allow users to change the greyscale value of quicklaunch
+ icons in x11/xfce4-dashboard (this feature is only available
+ in the unstable release).
+
+
+
+
From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 20:45:18 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id 5F719EA;
Sun, 12 Apr 2015 20:45:18 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id 312E2389;
Sun, 12 Apr 2015 20:45:18 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3CKjHLT004396;
Sun, 12 Apr 2015 20:45:17 GMT (envelope-from bjk@FreeBSD.org)
Received: (from bjk@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3CKjHj3004394;
Sun, 12 Apr 2015 20:45:17 GMT (envelope-from bjk@FreeBSD.org)
Message-Id: <201504122045.t3CKjHj3004394@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bjk set sender to bjk@FreeBSD.org
using -f
From: Benjamin Kaduk
Date: Sun, 12 Apr 2015 20:45:17 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46520 - head/en_US.ISO8859-1/htdocs/news/status
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 20:45:18 -0000
Author: bjk
Date: Sun Apr 12 20:45:17 2015
New Revision: 46520
URL: https://svnweb.freebsd.org/changeset/doc/46520
Log:
Add Lua boot loader report
Approved by: hrs (mentor, implicit)
Modified:
head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:35:34 2015 (r46519)
+++ head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:45:17 2015 (r46520)
@@ -232,4 +232,81 @@
+
+ Lua boot loader
+
+
+
+
+ Rui
+ Paulo
+
+ rpaulo@FreeBSD.org
+
+
+
+
+ Pedro
+ Souza
+
+ pedrosouza@FreeBSD.org
+
+
+
+
+ Wojciech
+ Koszek
+
+ wkoszek@FreeBSD.org
+
+
+
+
+
+
+
+
+ The Lua boot loader project is in its final stage and
+ it can be used on x86 already. The aim of this project is to
+ replace the Forth boot loader with a Lua boot loader. All the
+ scripts were re-written in Lua and are available in
+ sys/boot/lua. Once all the Forth features have been tested
+ and once the boot menus look exactly like in Forth, we will
+ start merging this project to &os; HEAD. Both loaders can
+ co-exist in the source tree with no problems because a
+ pluggable loader functionality was introduced for this
+ purpose.
+
+ The project was initially started by Wojciech
+ Koszek, and Pedro Souza wrote most of the Lua code last year in
+ his Google Summer of Code project.
+
+ To build a Lua boot loader just use:
+WITH_LUA=y
+WITHOUT_FORTH=y
+
+
+
+
+ Feature/appearance parity with Forth.
+
+
+
+ Investigate use of floating point by Lua.
+
+
+
+ Test the EFI Lua loader.
+
+
+
+ Test the U-Boot Lua loader.
+
+
+
+ Test the serial console.
+
+
+
+
From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 20:55:53 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
[IPv6:2001:1900:2254:206a::19:1])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id EAC22326;
Sun, 12 Apr 2015 20:55:53 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id D64A8673;
Sun, 12 Apr 2015 20:55:53 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3CKtrp7009258;
Sun, 12 Apr 2015 20:55:53 GMT (envelope-from bjk@FreeBSD.org)
Received: (from bjk@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3CKtrJD009257;
Sun, 12 Apr 2015 20:55:53 GMT (envelope-from bjk@FreeBSD.org)
Message-Id: <201504122055.t3CKtrJD009257@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bjk set sender to bjk@FreeBSD.org
using -f
From: Benjamin Kaduk
Date: Sun, 12 Apr 2015 20:55:53 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46521 - head/en_US.ISO8859-1/htdocs/news/status
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 20:55:54 -0000
Author: bjk
Date: Sun Apr 12 20:55:52 2015
New Revision: 46521
URL: https://svnweb.freebsd.org/changeset/doc/46521
Log:
Add report on Michael W. Lucas books
Approved by: hrs (mentor, implicit)
Modified:
head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:45:17 2015 (r46520)
+++ head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:55:52 2015 (r46521)
@@ -309,4 +309,38 @@ WITHOUT_FORTH=y
+
+ More Michael Lucas &os; books
+
+
+
+
+ Michael
+ Lucas
+
+ mwlucas@michaelwlucas.com
+
+
+
+
+
+
+
+
+ The &os; storage books are proceeding slower than expected.
+ This is a complex project.
+
+ It appears that ZFS will be a two-book topic. The
+ first book will cover basic ZFS, while the second will cover
+ advanced cases like live and cold replication, sharing,
+ performance, and using ZFS on top of less common GEOM
+ providers. More details can be found in the links section.
+
+ Allan Jude (allanjude@) is co-authoring the ZFS
+ books. Little did he know of the magnitude of the task
+ ahead of him when he signed up....
+
+
+
+
From owner-svn-doc-head@FreeBSD.ORG Sun Apr 12 21:08:23 2015
Return-Path:
Delivered-To: svn-doc-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by hub.freebsd.org (Postfix) with ESMTPS id 186D9926;
Sun, 12 Apr 2015 21:08:23 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
[IPv6:2001:1900:2254:2068::e6a:0])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(Client did not present a certificate)
by mx1.freebsd.org (Postfix) with ESMTPS id DE3A689A;
Sun, 12 Apr 2015 21:08:22 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3CL8Mmr014437;
Sun, 12 Apr 2015 21:08:22 GMT (envelope-from bjk@FreeBSD.org)
Received: (from bjk@localhost)
by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3CL8Mas014436;
Sun, 12 Apr 2015 21:08:22 GMT (envelope-from bjk@FreeBSD.org)
Message-Id: <201504122108.t3CL8Mas014436@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bjk set sender to bjk@FreeBSD.org
using -f
From: Benjamin Kaduk
Date: Sun, 12 Apr 2015 21:08:22 +0000 (UTC)
To: doc-committers@freebsd.org, svn-doc-all@freebsd.org,
svn-doc-head@freebsd.org
Subject: svn commit: r46522 - head/en_US.ISO8859-1/htdocs/news/status
X-SVN-Group: doc-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-doc-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the doc tree for head
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
X-List-Received-Date: Sun, 12 Apr 2015 21:08:23 -0000
Author: bjk
Date: Sun Apr 12 21:08:21 2015
New Revision: 46522
URL: https://svnweb.freebsd.org/changeset/doc/46522
Log:
Add opaque ifnet report
Approved by: hrs (mentor, implicit)
Modified:
head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
Modified: head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 20:55:52 2015 (r46521)
+++ head/en_US.ISO8859-1/htdocs/news/status/report-2015-01-2015-03.xml Sun Apr 12 21:08:21 2015 (r46522)
@@ -342,5 +342,49 @@ WITHOUT_FORTH=y