From owner-cvs-sys Tue Apr 15 20:08:39 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA01777 for cvs-sys-outgoing; Tue, 15 Apr 1997 20:08:39 -0700 (PDT) Received: (from kato@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA01769; Tue, 15 Apr 1997 20:08:36 -0700 (PDT) Date: Tue, 15 Apr 1997 20:08:36 -0700 (PDT) From: KATO Takenori Message-Id: <199704160308.UAA01769@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/miscfs/union union_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk kato 97/04/15 20:08:36 Modified: sys/miscfs/union union_vnops.c Log: Undo previous commit to avoid panic, and fix order of argument of VOP_LINK(). The reason of strange behavior was wrong order of the argument, that is, the operation # ln foo bar in a union fs tried to do # ln bar foo in ufs layer. Now we can make a link in a union fs. Revision Changes Path 1.25 +2 -15 src/sys/miscfs/union/union_vnops.c