Deleted Added
full compact
vfs_extattr.c (92927) vfs_extattr.c (93159)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94
39 * $FreeBSD: head/sys/kern/vfs_extattr.c 92927 2002-03-22 04:56:09Z arr $
39 * $FreeBSD: head/sys/kern/vfs_extattr.c 93159 2002-03-25 18:26:34Z arr $
40 */
41
42/* For 4.3 integer FS ID compatibility */
43#include "opt_compat.h"
44#include "opt_ffs.h"
45
46#include <sys/param.h>
47#include <sys/systm.h>

--- 254 unchanged lines hidden (view full) ---

302 linker_file_t lf;
303
304 /* Only load modules for root (very important!) */
305 error = suser_td(td);
306 if (error) {
307 vput(vp);
308 return error;
309 }
40 */
41
42/* For 4.3 integer FS ID compatibility */
43#include "opt_compat.h"
44#include "opt_ffs.h"
45
46#include <sys/param.h>
47#include <sys/systm.h>

--- 254 unchanged lines hidden (view full) ---

302 linker_file_t lf;
303
304 /* Only load modules for root (very important!) */
305 error = suser_td(td);
306 if (error) {
307 vput(vp);
308 return error;
309 }
310 error = securelevel_gt(td->td_ucred, 0);
311 if (error != 0) {
312 vput(vp);
313 return (EPERM);
314 }
310 error = linker_load_file(fstype, &lf);
311 if (error || lf == NULL) {
312 vput(vp);
313 if (lf == NULL)
314 error = ENODEV;
315 return error;
316 }
317 lf->userrefs++;

--- 3983 unchanged lines hidden ---
315 error = linker_load_file(fstype, &lf);
316 if (error || lf == NULL) {
317 vput(vp);
318 if (lf == NULL)
319 error = ENODEV;
320 return error;
321 }
322 lf->userrefs++;

--- 3983 unchanged lines hidden ---