From owner-freebsd-questions@FreeBSD.ORG Mon Aug 17 20:19:02 2009 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4D8210656AC for ; Mon, 17 Aug 2009 20:19:02 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-ew0-f206.google.com (mail-ew0-f206.google.com [209.85.219.206]) by mx1.freebsd.org (Postfix) with ESMTP id 6725D8FC57 for ; Mon, 17 Aug 2009 20:19:02 +0000 (UTC) Received: by ewy2 with SMTP id 2so61887ewy.43 for ; Mon, 17 Aug 2009 13:19:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=FLTlDDjMUpoOqJr0ZkcZU77kASHB4reUPMN+nKL9OkE=; b=nwtzxqIZvJhCSA2CebR2P8uaRt/EmuZ2i2vaQTeDgwUfY+iUDJcMT/3VHnKyu1lBs5 2YTTBQRIli7orUD5slhBeBSmQyHx5zSoSaeXkX/iE5zrZsR5X/xQ9jmwHJ61wT8bm+7c pcPu/yU4Tw+eczlyqmwBiYsGoaT1LK8b4CX+Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=NutlkfmKOqRQ6oGkBXj7WBQzOYq+pL1z/RCSi36b/QoUb1zLkSQb9kTLvo6Gfyp6kz 0X2ZJSoR7mff0L3DD8yeytuxpTCPOY91Z+10RbgNXEdfeLde71UorjF0OX96317lQUj4 oSjXrt3ryAb5ik7djLKZNLUQVI8g6UCe1J6R4= MIME-Version: 1.0 Received: by 10.216.53.199 with SMTP id g49mr1050125wec.49.1250540341183; Mon, 17 Aug 2009 13:19:01 -0700 (PDT) Date: Mon, 17 Aug 2009 20:19:01 +0000 Message-ID: From: "b. f." To: freebsd-questions@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Subject: Re: plip0 & GEOM_LABEL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Aug 2009 20:19:02 -0000 Roland Smith wrote: >On Mon, Aug 17, 2009 at 03:00:31PM -0400, PJ wrote: >> version 7.2 GENERIC kernel >> on bootup, >> dmesg shows plip0: WARNING: using obsoleted IFF_NEEDSGIANT flag >>Is this significant? Of what? >It means that someone should update this driver. But unless you are using your >parallel port for IP traffic (and who does these days?) it won't bother you. I do, occasionally. It comes in handy with some older hardware, and in an emergency. As computers with multiple processors became more common, large parts of the operating system were rewritten to work both safely and efficiently with multiple processors; however, there remain some areas where more work needs to be done, and developers added such messages as a reminder and a warning. Up until recently, plip(4) was one of those places, but John Baldwin fixed this for FreeBSD 8. >> Then, GEOM_LABEL: bunch of labels removed.... >> Same question? >The geom software now automatically assigns (unchanging) labels to UFS >filesystems. This enables people to mount filesystems correctly even if the >harddisk is moved to a different controller. E.g. /dev/da4s1g might become >/dev/da6s1g, but its labeled device /dev/ufsid/482e0880cf225c60 would not >change. The labels are removed if a partition is mounted, which the warning >mentions. It is harmless. > >> And how to I get rid of the GEOM_LABEL: stuff - it seems unnecessary... >You might have to dig into the geom code... :-) If you really don't want it, remove: options GEOM_LABEL from your kernel and rebuild. You can always load it as a kernel module if you later find that you need it. b.