]> git.proxmox.com Git - mirror_spl-debian.git/blame - module/spl/spl-kobj.c
Public Release Prep
[mirror_spl-debian.git] / module / spl / spl-kobj.c
CommitLineData
716154c5
BB
1/*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5
BB
8 * This file is part of the SPL, Solaris Porting Layer.
9 * For details, see <http://github.com/behlendorf/spl/>.
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23 *****************************************************************************
24 * Solaris Porting Layer (SPL) Kobj Implementation.
25\*****************************************************************************/
715f6251 26
9490c148 27#include <sys/kobj.h>
9490c148 28
937879f1 29#ifdef DEBUG_SUBSYSTEM
30#undef DEBUG_SUBSYSTEM
31#endif
32
33#define DEBUG_SUBSYSTEM S_KOBJ
34
9490c148 35struct _buf *
36kobj_open_file(const char *name)
37{
38 struct _buf *file;
4b171585 39 vnode_t *vp;
40 int rc;
937879f1 41 ENTRY;
9490c148 42
3bc9d50e 43 file = kmalloc(sizeof(_buf_t), GFP_KERNEL);
44 if (file == NULL)
937879f1 45 RETURN((_buf_t *)-1UL);
9490c148 46
3bc9d50e 47 if ((rc = vn_open(name, UIO_SYSSPACE, FREAD, 0644, &vp, 0, 0))) {
48 kfree(file);
49 RETURN((_buf_t *)-1UL);
50 }
51
4b171585 52 file->vp = vp;
9490c148 53
937879f1 54 RETURN(file);
9490c148 55} /* kobj_open_file() */
56EXPORT_SYMBOL(kobj_open_file);
57
58void
59kobj_close_file(struct _buf *file)
60{
937879f1 61 ENTRY;
4b171585 62 VOP_CLOSE(file->vp, 0, 0, 0, 0, 0);
63 VN_RELE(file->vp);
64 kfree(file);
937879f1 65 EXIT;
9490c148 66} /* kobj_close_file() */
67EXPORT_SYMBOL(kobj_close_file);
68
69int
4b171585 70kobj_read_file(struct _buf *file, char *buf, ssize_t size, offset_t off)
9490c148 71{
937879f1 72 ENTRY;
73 RETURN(vn_rdwr(UIO_READ, file->vp, buf, size, off,
74 UIO_SYSSPACE, 0, RLIM64_INFINITY, 0, NULL));
9490c148 75} /* kobj_read_file() */
76EXPORT_SYMBOL(kobj_read_file);
77
78int
79kobj_get_filesize(struct _buf *file, uint64_t *size)
80{
4b171585 81 vattr_t vap;
9490c148 82 int rc;
937879f1 83 ENTRY;
9490c148 84
4b171585 85 rc = VOP_GETATTR(file->vp, &vap, 0, 0, NULL);
9490c148 86 if (rc)
937879f1 87 RETURN(rc);
9490c148 88
4b171585 89 *size = vap.va_size;
90
937879f1 91 RETURN(rc);
9490c148 92} /* kobj_get_filesize() */
93EXPORT_SYMBOL(kobj_get_filesize);