zfs/module/zpios/zpios.c

1293 lines
32 KiB
C
Raw Normal View History

2008-12-05 19:32:34 +00:00
/*
* This file is part of the ZFS Linux port.
*
* Copyright (c) 2008 Lawrence Livermore National Security, LLC.
* Produced at Lawrence Livermore National Laboratory
* Written by:
* Brian Behlendorf <behlendorf1@llnl.gov>,
* Herb Wartens <wartens2@llnl.gov>,
* Jim Garlick <garlick@llnl.gov>
* LLNL-CODE-403049
*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
* Kernel PIOS DMU implementation originally derived from PIOS test code.
2008-12-05 19:32:34 +00:00
* Character control interface derived from SPL code.
*/
#include <sys/zfs_context.h>
#include <sys/dmu.h>
#include <sys/txg.h>
#include <linux/cdev.h>
2008-12-23 17:24:19 +00:00
#include "zpios-internal.h"
2008-12-05 19:32:34 +00:00
2009-01-14 16:38:35 +00:00
static struct class *zpios_class;
2008-12-05 19:32:34 +00:00
static inline
struct timespec timespec_add(struct timespec lhs, struct timespec rhs)
{
struct timespec ts_delta;
set_normalized_timespec(&ts_delta, lhs.tv_sec + rhs.tv_sec,
lhs.tv_nsec + rhs.tv_nsec);
return ts_delta;
}
static
2009-01-14 16:38:35 +00:00
int zpios_upcall(char *path, char *phase, run_args_t *run_args, int rc)
2008-12-05 19:32:34 +00:00
{
/* This is stack heavy but it should be OK since we are only
* making the upcall between tests when the stack is shallow.
*/
char id[16], chunk_size[16], region_size[16], thread_count[16];
char region_count[16], offset[16], region_noise[16], chunk_noise[16];
char thread_delay[16], flags[16], result[8];
char *argv[16], *envp[4];
if ((path == NULL) || (strlen(path) == 0))
2008-12-05 19:32:34 +00:00
return -ENOENT;
snprintf(id, 15, "%d", run_args->id);
snprintf(chunk_size, 15, "%lu", (long unsigned)run_args->chunk_size);
snprintf(region_size, 15, "%lu",(long unsigned) run_args->region_size);
snprintf(thread_count, 15, "%u", run_args->thread_count);
snprintf(region_count, 15, "%u", run_args->region_count);
snprintf(offset, 15, "%lu", (long unsigned)run_args->offset);
snprintf(region_noise, 15, "%u", run_args->region_noise);
snprintf(chunk_noise, 15, "%u", run_args->chunk_noise);
snprintf(thread_delay, 15, "%u", run_args->thread_delay);
snprintf(flags, 15, "0x%x", run_args->flags);
snprintf(result, 7, "%d", rc);
/* Passing 15 args to registered pre/post upcall */
argv[0] = path;
argv[1] = phase;
argv[2] = strlen(run_args->log) ? run_args->log : "<none>";
argv[3] = id;
argv[4] = run_args->pool;
argv[5] = chunk_size;
argv[6] = region_size;
argv[7] = thread_count;
argv[8] = region_count;
argv[9] = offset;
argv[10] = region_noise;
argv[11] = chunk_noise;
argv[12] = thread_delay;
argv[13] = flags;
argv[14] = result;
argv[15] = NULL;
/* Passing environment for user space upcall */
2008-12-05 19:32:34 +00:00
envp[0] = "HOME=/";
envp[1] = "TERM=linux";
envp[2] = "PATH=/sbin:/usr/sbin:/bin:/usr/bin";
envp[3] = NULL;
return call_usermodehelper(path, argv, envp, 1);
}
static uint64_t
2009-01-14 16:38:35 +00:00
zpios_dmu_object_create(run_args_t *run_args, objset_t *os)
2008-12-05 19:32:34 +00:00
{
struct dmu_tx *tx;
uint64_t obj = 0ULL;
int rc;
tx = dmu_tx_create(os);
dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, OBJ_SIZE);
rc = dmu_tx_assign(tx, TXG_WAIT);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file,
2008-12-05 19:32:34 +00:00
"dmu_tx_assign() failed: %d\n", rc);
dmu_tx_abort(tx);
return obj;
}
obj = dmu_object_alloc(os, DMU_OT_UINT64_OTHER, 0,
DMU_OT_NONE, 0, tx);
rc = dmu_object_set_blocksize(os, obj, 128ULL << 10, 0, tx);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file,
2008-12-05 19:32:34 +00:00
"dmu_object_set_blocksize() failed: %d\n", rc);
dmu_tx_abort(tx);
return obj;
}
dmu_tx_commit(tx);
return obj;
}
static int
2009-01-14 16:38:35 +00:00
zpios_dmu_object_free(run_args_t *run_args, objset_t *os, uint64_t obj)
2008-12-05 19:32:34 +00:00
{
struct dmu_tx *tx;
int rc;
tx = dmu_tx_create(os);
dmu_tx_hold_free(tx, obj, 0, DMU_OBJECT_END);
rc = dmu_tx_assign(tx, TXG_WAIT);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file,
2008-12-05 19:32:34 +00:00
"dmu_tx_assign() failed: %d\n", rc);
dmu_tx_abort(tx);
return rc;
}
rc = dmu_object_free(os, obj, tx);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file,
2008-12-05 19:32:34 +00:00
"dmu_object_free() failed: %d\n", rc);
dmu_tx_abort(tx);
return rc;
}
dmu_tx_commit(tx);
return 0;
}
static int
2009-01-14 16:38:35 +00:00
zpios_dmu_setup(run_args_t *run_args)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
zpios_time_t *t = &(run_args->stats.cr_time);
2008-12-05 19:32:34 +00:00
objset_t *os;
uint64_t obj = 0ULL;
int i, rc = 0;
(void)zpios_upcall(run_args->pre, PHASE_PRE_CREATE, run_args, 0);
2008-12-05 19:32:34 +00:00
t->start = current_kernel_time();
rc = dmu_objset_open(run_args->pool, DMU_OST_ZFS, DS_MODE_USER, &os);
2008-12-05 19:32:34 +00:00
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file, "Error dmu_objset_open() "
2008-12-05 19:32:34 +00:00
"failed: %d\n", rc);
goto out;
}
if (!(run_args->flags & DMU_FPP)) {
2009-01-14 16:38:35 +00:00
obj = zpios_dmu_object_create(run_args, os);
2008-12-05 19:32:34 +00:00
if (obj == 0) {
rc = -EBADF;
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file, "Error zpios_dmu_"
2008-12-05 19:32:34 +00:00
"object_create() failed, %d\n", rc);
goto out;
}
}
for (i = 0; i < run_args->region_count; i++) {
2009-01-14 16:38:35 +00:00
zpios_region_t *region;
2008-12-05 19:32:34 +00:00
region = &run_args->regions[i];
mutex_init(&region->lock, NULL, MUTEX_DEFAULT, NULL);
if (run_args->flags & DMU_FPP) {
/* File per process */
region->obj.os = os;
2009-01-14 16:38:35 +00:00
region->obj.obj = zpios_dmu_object_create(run_args, os);
2008-12-05 19:32:34 +00:00
ASSERT(region->obj.obj > 0); /* XXX - Handle this */
region->wr_offset = run_args->offset;
region->rd_offset = run_args->offset;
region->init_offset = run_args->offset;
region->max_offset = run_args->offset +
run_args->region_size;
} else {
/* Single shared file */
region->obj.os = os;
region->obj.obj = obj;
region->wr_offset = run_args->offset * i;
region->rd_offset = run_args->offset * i;
region->init_offset = run_args->offset * i;
region->max_offset = run_args->offset *
i + run_args->region_size;
}
}
run_args->os = os;
out:
t->stop = current_kernel_time();
t->delta = timespec_sub(t->stop, t->start);
(void)zpios_upcall(run_args->post, PHASE_POST_CREATE, run_args, rc);
2008-12-05 19:32:34 +00:00
return rc;
}
static int
2009-01-14 16:38:35 +00:00
zpios_setup_run(run_args_t **run_args, zpios_cmd_t *kcmd, struct file *file)
2008-12-05 19:32:34 +00:00
{
run_args_t *ra;
int rc, size;
2009-01-14 16:38:35 +00:00
size = sizeof(*ra) + kcmd->cmd_region_count * sizeof(zpios_region_t);
2008-12-05 19:32:34 +00:00
ra = vmem_zalloc(size, KM_SLEEP);
if (ra == NULL) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Unable to vmem_zalloc() %d bytes "
2008-12-05 19:32:34 +00:00
"for regions\n", size);
return -ENOMEM;
}
*run_args = ra;
2009-01-14 16:38:35 +00:00
strncpy(ra->pool, kcmd->cmd_pool, ZPIOS_NAME_SIZE - 1);
strncpy(ra->pre, kcmd->cmd_pre, ZPIOS_PATH_SIZE - 1);
strncpy(ra->post, kcmd->cmd_post, ZPIOS_PATH_SIZE - 1);
strncpy(ra->log, kcmd->cmd_log, ZPIOS_PATH_SIZE - 1);
2008-12-05 19:32:34 +00:00
ra->id = kcmd->cmd_id;
ra->chunk_size = kcmd->cmd_chunk_size;
ra->thread_count = kcmd->cmd_thread_count;
ra->region_count = kcmd->cmd_region_count;
ra->region_size = kcmd->cmd_region_size;
ra->offset = kcmd->cmd_offset;
ra->region_noise = kcmd->cmd_region_noise;
ra->chunk_noise = kcmd->cmd_chunk_noise;
ra->thread_delay = kcmd->cmd_thread_delay;
ra->flags = kcmd->cmd_flags;
ra->stats.wr_data = 0;
ra->stats.wr_chunks = 0;
ra->stats.rd_data = 0;
ra->stats.rd_chunks = 0;
ra->region_next = 0;
ra->file = file;
mutex_init(&ra->lock_work, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&ra->lock_ctl, NULL, MUTEX_DEFAULT, NULL);
(void)zpios_upcall(ra->pre, PHASE_PRE_RUN, ra, 0);
2009-01-14 16:38:35 +00:00
rc = zpios_dmu_setup(ra);
2008-12-05 19:32:34 +00:00
if (rc) {
mutex_destroy(&ra->lock_ctl);
mutex_destroy(&ra->lock_work);
vmem_free(ra, size);
*run_args = NULL;
}
return rc;
}
static int
2009-01-14 16:38:35 +00:00
zpios_get_work_item(run_args_t *run_args, dmu_obj_t *obj, __u64 *offset,
__u32 *chunk_size, zpios_region_t **region, __u32 flags)
2008-12-05 19:32:34 +00:00
{
int i, j, count = 0;
unsigned int random_int;
get_random_bytes(&random_int, sizeof(unsigned int));
mutex_enter(&run_args->lock_work);
i = run_args->region_next;
/* XXX: I don't much care for this chunk selection mechansim
* there's the potential to burn a lot of time here doing nothing
* useful while holding the global lock. This could give some
* misleading performance results. I'll fix it latter.
*/
while (count < run_args->region_count) {
__u64 *rw_offset;
2009-01-14 16:38:35 +00:00
zpios_time_t *rw_time;
2008-12-05 19:32:34 +00:00
j = i % run_args->region_count;
*region = &(run_args->regions[j]);
if (flags & DMU_WRITE) {
rw_offset = &((*region)->wr_offset);
rw_time = &((*region)->stats.wr_time);
} else {
rw_offset = &((*region)->rd_offset);
rw_time = &((*region)->stats.rd_time);
}
/* test if region is fully written */
if (*rw_offset + *chunk_size > (*region)->max_offset) {
i++;
count++;
if (unlikely(rw_time->stop.tv_sec == 0) &&
unlikely(rw_time->stop.tv_nsec == 0))
rw_time->stop = current_kernel_time();
continue;
}
*offset = *rw_offset;
*obj = (*region)->obj;
*rw_offset += *chunk_size;
/* update ctl structure */
if (run_args->region_noise) {
get_random_bytes(&random_int, sizeof(unsigned int));
run_args->region_next += random_int % run_args->region_noise;
} else {
run_args->region_next++;
}
mutex_exit(&run_args->lock_work);
return 1;
}
/* nothing left to do */
mutex_exit(&run_args->lock_work);
return 0;
}
static void
2009-01-14 16:38:35 +00:00
zpios_remove_objects(run_args_t *run_args)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
zpios_time_t *t = &(run_args->stats.rm_time);
zpios_region_t *region;
2008-12-05 19:32:34 +00:00
int rc = 0, i;
(void)zpios_upcall(run_args->pre, PHASE_PRE_REMOVE, run_args, 0);
2008-12-05 19:32:34 +00:00
t->start = current_kernel_time();
if (run_args->flags & DMU_REMOVE) {
if (run_args->flags & DMU_FPP) {
for (i = 0; i < run_args->region_count; i++) {
region = &run_args->regions[i];
2009-01-14 16:38:35 +00:00
rc = zpios_dmu_object_free(run_args,
2008-12-05 19:32:34 +00:00
region->obj.os,
region->obj.obj);
if (rc)
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file, "Error "
2008-12-05 19:32:34 +00:00
"removing object %d, %d\n",
(int)region->obj.obj, rc);
}
} else {
region = &run_args->regions[0];
2009-01-14 16:38:35 +00:00
rc = zpios_dmu_object_free(run_args,
2008-12-05 19:32:34 +00:00
region->obj.os,
region->obj.obj);
if (rc)
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file, "Error "
2008-12-05 19:32:34 +00:00
"removing object %d, %d\n",
(int)region->obj.obj, rc);
}
}
dmu_objset_close(run_args->os);
t->stop = current_kernel_time();
t->delta = timespec_sub(t->stop, t->start);
(void)zpios_upcall(run_args->post, PHASE_POST_REMOVE, run_args, rc);
2008-12-05 19:32:34 +00:00
}
static void
2009-01-14 16:38:35 +00:00
zpios_cleanup_run(run_args_t *run_args)
2008-12-05 19:32:34 +00:00
{
int i, size = 0;
if (run_args == NULL)
return;
if (run_args->threads != NULL) {
for (i = 0; i < run_args->thread_count; i++) {
if (run_args->threads[i]) {
mutex_destroy(&run_args->threads[i]->lock);
kmem_free(run_args->threads[i],
sizeof(thread_data_t));
}
}
kmem_free(run_args->threads,
sizeof(thread_data_t *) * run_args->thread_count);
}
for (i = 0; i < run_args->region_count; i++)
mutex_destroy(&run_args->regions[i].lock);
2008-12-05 19:32:34 +00:00
mutex_destroy(&run_args->lock_work);
mutex_destroy(&run_args->lock_ctl);
size = run_args->region_count * sizeof(zpios_region_t);
2008-12-05 19:32:34 +00:00
vmem_free(run_args, sizeof(*run_args) + size);
}
static int
2009-01-14 16:38:35 +00:00
zpios_dmu_write(run_args_t *run_args, objset_t *os, uint64_t object,
2008-12-05 19:32:34 +00:00
uint64_t offset, uint64_t size, const void *buf)
{
struct dmu_tx *tx;
int rc, how = TXG_WAIT;
2008-12-05 19:32:34 +00:00
int flags = 0;
if (run_args->flags & DMU_WRITE_NOWAIT)
how = TXG_NOWAIT;
while (1) {
tx = dmu_tx_create(os);
dmu_tx_hold_write(tx, object, offset, size);
rc = dmu_tx_assign(tx, how);
if (rc) {
if (rc == ERESTART && how == TXG_NOWAIT) {
dmu_tx_wait(tx);
dmu_tx_abort(tx);
continue;
}
zpios_print(run_args->file,
2008-12-05 19:32:34 +00:00
"Error in dmu_tx_assign(), %d", rc);
dmu_tx_abort(tx);
return rc;
}
break;
}
2008-12-05 19:32:34 +00:00
if (run_args->flags & DMU_WRITE_ZC)
flags |= DMU_WRITE_ZEROCOPY;
dmu_write_impl(os, object, offset, size, buf, tx, flags);
dmu_tx_commit(tx);
2008-12-05 19:32:34 +00:00
return 0;
2008-12-05 19:32:34 +00:00
}
static int
2009-01-14 16:38:35 +00:00
zpios_dmu_read(run_args_t *run_args, objset_t *os, uint64_t object,
2008-12-05 19:32:34 +00:00
uint64_t offset, uint64_t size, void *buf)
{
int flags = 0;
if (run_args->flags & DMU_READ_ZC)
flags |= DMU_READ_ZEROCOPY;
return dmu_read_impl(os, object, offset, size, buf, flags);
}
static int
2009-01-14 16:38:35 +00:00
zpios_thread_main(void *data)
2008-12-05 19:32:34 +00:00
{
thread_data_t *thr = (thread_data_t *)data;
run_args_t *run_args = thr->run_args;
2009-01-14 16:38:35 +00:00
zpios_time_t t;
dmu_obj_t obj;
__u64 offset;
2008-12-05 19:32:34 +00:00
__u32 chunk_size;
2009-01-14 16:38:35 +00:00
zpios_region_t *region;
char *buf;
2008-12-05 19:32:34 +00:00
unsigned int random_int;
int chunk_noise = run_args->chunk_noise;
int chunk_noise_tmp = 0;
int thread_delay = run_args->thread_delay;
int thread_delay_tmp = 0;
int i, rc = 0;
2008-12-05 19:32:34 +00:00
if (chunk_noise) {
2008-12-05 19:32:34 +00:00
get_random_bytes(&random_int, sizeof(unsigned int));
chunk_noise_tmp = (random_int % (chunk_noise * 2))-chunk_noise;
}
2008-12-05 19:32:34 +00:00
/* It's OK to vmem_alloc() this memory because it will be copied
* in to the slab and pointers to the slab copy will be setup in
* the bio when the IO is submitted. This of course is not ideal
* since we want a zero-copy IO path if possible. It would be nice
* to have direct access to those slab entries.
*/
chunk_size = run_args->chunk_size + chunk_noise_tmp;
buf = (char *)vmem_alloc(chunk_size, KM_SLEEP);
ASSERT(buf);
/* Trivial data verification pattern for now. */
if (run_args->flags & DMU_VERIFY)
memset(buf, 'z', chunk_size);
/* Write phase */
mutex_enter(&thr->lock);
thr->stats.wr_time.start = current_kernel_time();
2008-12-05 19:32:34 +00:00
mutex_exit(&thr->lock);
while (zpios_get_work_item(run_args, &obj, &offset,
2008-12-05 19:32:34 +00:00
&chunk_size, &region, DMU_WRITE)) {
if (thread_delay) {
get_random_bytes(&random_int, sizeof(unsigned int));
thread_delay_tmp = random_int % thread_delay;
set_current_state(TASK_UNINTERRUPTIBLE);
2008-12-05 19:32:34 +00:00
schedule_timeout(thread_delay_tmp); /* In jiffies */
}
t.start = current_kernel_time();
2009-01-14 16:38:35 +00:00
rc = zpios_dmu_write(run_args, obj.os, obj.obj,
2008-12-05 19:32:34 +00:00
offset, chunk_size, buf);
t.stop = current_kernel_time();
2008-12-05 19:32:34 +00:00
t.delta = timespec_sub(t.stop, t.start);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file, "IO error while doing "
2008-12-05 19:32:34 +00:00
"dmu_write(): %d\n", rc);
break;
}
mutex_enter(&thr->lock);
thr->stats.wr_data += chunk_size;
thr->stats.wr_chunks++;
thr->stats.wr_time.delta = timespec_add(
thr->stats.wr_time.delta, t.delta);
mutex_exit(&thr->lock);
mutex_enter(&region->lock);
region->stats.wr_data += chunk_size;
region->stats.wr_chunks++;
region->stats.wr_time.delta = timespec_add(
region->stats.wr_time.delta, t.delta);
/* First time region was accessed */
if (region->init_offset == offset)
region->stats.wr_time.start = t.start;
mutex_exit(&region->lock);
}
2008-12-05 19:32:34 +00:00
mutex_enter(&run_args->lock_ctl);
run_args->threads_done++;
mutex_exit(&run_args->lock_ctl);
mutex_enter(&thr->lock);
thr->rc = rc;
thr->stats.wr_time.stop = current_kernel_time();
2008-12-05 19:32:34 +00:00
mutex_exit(&thr->lock);
wake_up(&run_args->waitq);
2008-12-05 19:32:34 +00:00
set_current_state(TASK_UNINTERRUPTIBLE);
2008-12-05 19:32:34 +00:00
schedule();
/* Check if we should exit */
mutex_enter(&thr->lock);
rc = thr->rc;
mutex_exit(&thr->lock);
if (rc)
goto out;
/* Read phase */
mutex_enter(&thr->lock);
thr->stats.rd_time.start = current_kernel_time();
2008-12-05 19:32:34 +00:00
mutex_exit(&thr->lock);
while (zpios_get_work_item(run_args, &obj, &offset,
2008-12-05 19:32:34 +00:00
&chunk_size, &region, DMU_READ)) {
if (thread_delay) {
get_random_bytes(&random_int, sizeof(unsigned int));
thread_delay_tmp = random_int % thread_delay;
set_current_state(TASK_UNINTERRUPTIBLE);
2008-12-05 19:32:34 +00:00
schedule_timeout(thread_delay_tmp); /* In jiffies */
}
if (run_args->flags & DMU_VERIFY)
memset(buf, 0, chunk_size);
t.start = current_kernel_time();
2009-01-14 16:38:35 +00:00
rc = zpios_dmu_read(run_args, obj.os, obj.obj,
2008-12-05 19:32:34 +00:00
offset, chunk_size, buf);
t.stop = current_kernel_time();
2008-12-05 19:32:34 +00:00
t.delta = timespec_sub(t.stop, t.start);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file, "IO error while doing "
2008-12-05 19:32:34 +00:00
"dmu_read(): %d\n", rc);
break;
}
/* Trivial data verification, expensive! */
if (run_args->flags & DMU_VERIFY) {
for (i = 0; i < chunk_size; i++) {
if (buf[i] != 'z') {
2009-01-14 16:38:35 +00:00
zpios_print(run_args->file,
2008-12-05 19:32:34 +00:00
"IO verify error: %d/%d/%d\n",
(int)obj.obj, (int)offset,
(int)chunk_size);
break;
}
}
}
mutex_enter(&thr->lock);
thr->stats.rd_data += chunk_size;
thr->stats.rd_chunks++;
thr->stats.rd_time.delta = timespec_add(
thr->stats.rd_time.delta, t.delta);
mutex_exit(&thr->lock);
mutex_enter(&region->lock);
region->stats.rd_data += chunk_size;
region->stats.rd_chunks++;
region->stats.rd_time.delta = timespec_add(
region->stats.rd_time.delta, t.delta);
/* First time region was accessed */
if (region->init_offset == offset)
region->stats.rd_time.start = t.start;
mutex_exit(&region->lock);
}
2008-12-05 19:32:34 +00:00
mutex_enter(&run_args->lock_ctl);
run_args->threads_done++;
mutex_exit(&run_args->lock_ctl);
mutex_enter(&thr->lock);
thr->rc = rc;
thr->stats.rd_time.stop = current_kernel_time();
2008-12-05 19:32:34 +00:00
mutex_exit(&thr->lock);
wake_up(&run_args->waitq);
2008-12-05 19:32:34 +00:00
out:
vmem_free(buf, chunk_size);
do_exit(0);
return rc; /* Unreachable, due to do_exit() */
}
static int
2009-01-14 16:38:35 +00:00
zpios_thread_done(run_args_t *run_args)
2008-12-05 19:32:34 +00:00
{
ASSERT(run_args->threads_done <= run_args->thread_count);
return (run_args->threads_done == run_args->thread_count);
2008-12-05 19:32:34 +00:00
}
static int
2009-01-14 16:38:35 +00:00
zpios_threads_run(run_args_t *run_args)
2008-12-05 19:32:34 +00:00
{
struct task_struct *tsk, **tsks;
2008-12-05 19:32:34 +00:00
thread_data_t *thr = NULL;
2009-01-14 16:38:35 +00:00
zpios_time_t *tt = &(run_args->stats.total_time);
zpios_time_t *tw = &(run_args->stats.wr_time);
zpios_time_t *tr = &(run_args->stats.rd_time);
int i, rc = 0, tc = run_args->thread_count;
2008-12-05 19:32:34 +00:00
tsks = kmem_zalloc(sizeof(struct task_struct *) * tc, KM_SLEEP);
if (tsks == NULL) {
rc = -ENOMEM;
goto cleanup2;
}
run_args->threads = kmem_zalloc(sizeof(thread_data_t *) * tc, KM_SLEEP);
if (run_args->threads == NULL) {
rc = -ENOMEM;
goto cleanup;
}
init_waitqueue_head(&run_args->waitq);
run_args->threads_done = 0;
/* Create all the needed threads which will sleep until awoken */
for (i = 0; i < tc; i++) {
2008-12-05 19:32:34 +00:00
thr = kmem_zalloc(sizeof(thread_data_t), KM_SLEEP);
if (thr == NULL) {
rc = -ENOMEM;
goto taskerr;
}
thr->thread_no = i;
thr->run_args = run_args;
thr->rc = 0;
mutex_init(&thr->lock, NULL, MUTEX_DEFAULT, NULL);
2008-12-05 19:32:34 +00:00
run_args->threads[i] = thr;
tsk = kthread_create(zpios_thread_main, (void *)thr,
"%s/%d", "zpios_io", i);
if (IS_ERR(tsk)) {
2008-12-05 19:32:34 +00:00
rc = -EINVAL;
goto taskerr;
}
tsks[i] = tsk;
}
2008-12-05 19:32:34 +00:00
tt->start = current_kernel_time();
2008-12-05 19:32:34 +00:00
/* Wake up all threads for write phase */
(void)zpios_upcall(run_args->pre, PHASE_PRE_WRITE, run_args, 0);
for (i = 0; i < tc; i++)
2008-12-05 19:32:34 +00:00
wake_up_process(tsks[i]);
/* Wait for write phase to complete */
tw->start = current_kernel_time();
wait_event(run_args->waitq, zpios_thread_done(run_args));
tw->stop = current_kernel_time();
(void)zpios_upcall(run_args->post, PHASE_POST_WRITE, run_args, rc);
2008-12-05 19:32:34 +00:00
for (i = 0; i < tc; i++) {
2008-12-05 19:32:34 +00:00
thr = run_args->threads[i];
mutex_enter(&thr->lock);
if (!rc && thr->rc)
rc = thr->rc;
run_args->stats.wr_data += thr->stats.wr_data;
run_args->stats.wr_chunks += thr->stats.wr_chunks;
mutex_exit(&thr->lock);
}
if (rc) {
/* Wake up all threads and tell them to exit */
for (i = 0; i < tc; i++) {
mutex_enter(&thr->lock);
thr->rc = rc;
mutex_exit(&thr->lock);
wake_up_process(tsks[i]);
}
goto out;
}
mutex_enter(&run_args->lock_ctl);
ASSERT(run_args->threads_done == run_args->thread_count);
run_args->threads_done = 0;
mutex_exit(&run_args->lock_ctl);
/* Wake up all threads for read phase */
(void)zpios_upcall(run_args->pre, PHASE_PRE_READ, run_args, 0);
2008-12-05 19:32:34 +00:00
for (i = 0; i < tc; i++)
wake_up_process(tsks[i]);
/* Wait for read phase to complete */
tr->start = current_kernel_time();
wait_event(run_args->waitq, zpios_thread_done(run_args));
tr->stop = current_kernel_time();
(void)zpios_upcall(run_args->post, PHASE_POST_READ, run_args, rc);
2008-12-05 19:32:34 +00:00
for (i = 0; i < tc; i++) {
2008-12-05 19:32:34 +00:00
thr = run_args->threads[i];
mutex_enter(&thr->lock);
if (!rc && thr->rc)
rc = thr->rc;
run_args->stats.rd_data += thr->stats.rd_data;
run_args->stats.rd_chunks += thr->stats.rd_chunks;
mutex_exit(&thr->lock);
}
out:
tt->stop = current_kernel_time();
2008-12-05 19:32:34 +00:00
tt->delta = timespec_sub(tt->stop, tt->start);
tw->delta = timespec_sub(tw->stop, tw->start);
tr->delta = timespec_sub(tr->stop, tr->start);
cleanup:
kmem_free(tsks, sizeof(struct task_struct *) * tc);
cleanup2:
/* Returns first encountered thread error (if any) */
return rc;
taskerr:
/* Destroy all threads that were created successfully */
for (i = 0; i < tc; i++)
if (tsks[i] != NULL)
(void) kthread_stop(tsks[i]);
goto cleanup;
}
static int
2009-01-14 16:38:35 +00:00
zpios_do_one_run(struct file *file, zpios_cmd_t *kcmd,
2008-12-05 19:32:34 +00:00
int data_size, void *data)
{
run_args_t *run_args = { 0 };
2009-01-14 16:38:35 +00:00
zpios_stats_t *stats = (zpios_stats_t *)data;
2008-12-05 19:32:34 +00:00
int i, n, m, size, rc;
if ((!kcmd->cmd_chunk_size) || (!kcmd->cmd_region_size) ||
(!kcmd->cmd_thread_count) || (!kcmd->cmd_region_count)) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Invalid chunk_size, region_size, "
2008-12-05 19:32:34 +00:00
"thread_count, or region_count, %d\n", -EINVAL);
return -EINVAL;
}
if (!(kcmd->cmd_flags & DMU_WRITE) ||
!(kcmd->cmd_flags & DMU_READ)) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Invalid flags, minimally DMU_WRITE "
2008-12-05 19:32:34 +00:00
"and DMU_READ must be set, %d\n", -EINVAL);
return -EINVAL;
}
if ((kcmd->cmd_flags & (DMU_WRITE_ZC | DMU_READ_ZC)) &&
(kcmd->cmd_flags & DMU_VERIFY)) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Invalid flags, DMU_*_ZC incompatible "
2008-12-05 19:32:34 +00:00
"with DMU_VERIFY, used for performance analysis "
"only, %d\n", -EINVAL);
return -EINVAL;
}
/* Opaque data on return contains structs of the following form:
*
2009-01-14 16:38:35 +00:00
* zpios_stat_t stats[];
2008-12-05 19:32:34 +00:00
* stats[0] = run_args->stats;
* stats[1-N] = threads[N]->stats;
* stats[N+1-M] = regions[M]->stats;
*
* Where N is the number of threads, and M is the number of regions.
*/
2009-01-14 16:38:35 +00:00
size = (sizeof(zpios_stats_t) +
(kcmd->cmd_thread_count * sizeof(zpios_stats_t)) +
(kcmd->cmd_region_count * sizeof(zpios_stats_t)));
2008-12-05 19:32:34 +00:00
if (data_size < size) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Invalid size, command data buffer "
2008-12-05 19:32:34 +00:00
"size too small, (%d < %d)\n", data_size, size);
return -ENOSPC;
}
rc = zpios_setup_run(&run_args, kcmd, file);
2008-12-05 19:32:34 +00:00
if (rc)
return rc;
2009-01-14 16:38:35 +00:00
rc = zpios_threads_run(run_args);
zpios_remove_objects(run_args);
2008-12-05 19:32:34 +00:00
if (rc)
goto cleanup;
if (stats) {
n = 1;
m = 1 + kcmd->cmd_thread_count;
stats[0] = run_args->stats;
for (i = 0; i < kcmd->cmd_thread_count; i++)
stats[n+i] = run_args->threads[i]->stats;
for (i = 0; i < kcmd->cmd_region_count; i++)
stats[m+i] = run_args->regions[i].stats;
}
cleanup:
2009-01-14 16:38:35 +00:00
zpios_cleanup_run(run_args);
(void)zpios_upcall(kcmd->cmd_post, PHASE_POST_RUN, run_args, 0);
2008-12-05 19:32:34 +00:00
return rc;
}
static int
2009-01-14 16:38:35 +00:00
zpios_open(struct inode *inode, struct file *file)
2008-12-05 19:32:34 +00:00
{
unsigned int minor = iminor(inode);
2009-01-14 16:38:35 +00:00
zpios_info_t *info;
2008-12-05 19:32:34 +00:00
2009-01-14 16:38:35 +00:00
if (minor >= ZPIOS_MINORS)
2008-12-05 19:32:34 +00:00
return -ENXIO;
2009-01-14 16:38:35 +00:00
info = (zpios_info_t *)kmem_alloc(sizeof(*info), KM_SLEEP);
2008-12-05 19:32:34 +00:00
if (info == NULL)
return -ENOMEM;
spin_lock_init(&info->info_lock);
2009-01-14 16:38:35 +00:00
info->info_size = ZPIOS_INFO_BUFFER_SIZE;
info->info_buffer = (char *)vmem_alloc(ZPIOS_INFO_BUFFER_SIZE,KM_SLEEP);
2008-12-05 19:32:34 +00:00
if (info->info_buffer == NULL) {
kmem_free(info, sizeof(*info));
return -ENOMEM;
}
info->info_head = info->info_buffer;
file->private_data = (void *)info;
return 0;
}
static int
2009-01-14 16:38:35 +00:00
zpios_release(struct inode *inode, struct file *file)
2008-12-05 19:32:34 +00:00
{
unsigned int minor = iminor(inode);
2009-01-14 16:38:35 +00:00
zpios_info_t *info = (zpios_info_t *)file->private_data;
2008-12-05 19:32:34 +00:00
2009-01-14 16:38:35 +00:00
if (minor >= ZPIOS_MINORS)
2008-12-05 19:32:34 +00:00
return -ENXIO;
ASSERT(info);
ASSERT(info->info_buffer);
2009-01-14 16:38:35 +00:00
vmem_free(info->info_buffer, ZPIOS_INFO_BUFFER_SIZE);
2008-12-05 19:32:34 +00:00
kmem_free(info, sizeof(*info));
return 0;
}
static int
2009-01-14 16:38:35 +00:00
zpios_buffer_clear(struct file *file, zpios_cfg_t *kcfg, unsigned long arg)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
zpios_info_t *info = (zpios_info_t *)file->private_data;
2008-12-05 19:32:34 +00:00
ASSERT(info);
ASSERT(info->info_buffer);
spin_lock(&info->info_lock);
memset(info->info_buffer, 0, info->info_size);
info->info_head = info->info_buffer;
spin_unlock(&info->info_lock);
return 0;
}
static int
2009-01-14 16:38:35 +00:00
zpios_buffer_size(struct file *file, zpios_cfg_t *kcfg, unsigned long arg)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
zpios_info_t *info = (zpios_info_t *)file->private_data;
2008-12-05 19:32:34 +00:00
char *buf;
int min, size, rc = 0;
ASSERT(info);
ASSERT(info->info_buffer);
spin_lock(&info->info_lock);
if (kcfg->cfg_arg1 > 0) {
size = kcfg->cfg_arg1;
buf = (char *)vmem_alloc(size, KM_SLEEP);
if (buf == NULL) {
rc = -ENOMEM;
goto out;
}
/* Zero fill and truncate contents when coping buffer */
min = ((size < info->info_size) ? size : info->info_size);
memset(buf, 0, size);
memcpy(buf, info->info_buffer, min);
vmem_free(info->info_buffer, info->info_size);
info->info_size = size;
info->info_buffer = buf;
info->info_head = info->info_buffer;
}
kcfg->cfg_rc1 = info->info_size;
2009-01-14 16:38:35 +00:00
if (copy_to_user((struct zpios_cfg_t __user *)arg, kcfg, sizeof(*kcfg)))
2008-12-05 19:32:34 +00:00
rc = -EFAULT;
out:
spin_unlock(&info->info_lock);
return rc;
}
static int
2009-01-14 16:38:35 +00:00
zpios_ioctl_cfg(struct file *file, unsigned long arg)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
zpios_cfg_t kcfg;
2008-12-05 19:32:34 +00:00
int rc = 0;
2009-01-14 16:38:35 +00:00
if (copy_from_user(&kcfg, (zpios_cfg_t *)arg, sizeof(kcfg)))
2008-12-05 19:32:34 +00:00
return -EFAULT;
2009-01-14 16:38:35 +00:00
if (kcfg.cfg_magic != ZPIOS_CFG_MAGIC) {
zpios_print(file, "Bad config magic 0x%x != 0x%x\n",
kcfg.cfg_magic, ZPIOS_CFG_MAGIC);
2008-12-05 19:32:34 +00:00
return -EINVAL;
}
switch (kcfg.cfg_cmd) {
2009-01-14 16:38:35 +00:00
case ZPIOS_CFG_BUFFER_CLEAR:
2008-12-05 19:32:34 +00:00
/* cfg_arg1 - Unused
* cfg_rc1 - Unused
*/
2009-01-14 16:38:35 +00:00
rc = zpios_buffer_clear(file, &kcfg, arg);
2008-12-05 19:32:34 +00:00
break;
2009-01-14 16:38:35 +00:00
case ZPIOS_CFG_BUFFER_SIZE:
2008-12-05 19:32:34 +00:00
/* cfg_arg1 - 0 - query size; >0 resize
* cfg_rc1 - Set to current buffer size
*/
2009-01-14 16:38:35 +00:00
rc = zpios_buffer_size(file, &kcfg, arg);
2008-12-05 19:32:34 +00:00
break;
default:
2009-01-14 16:38:35 +00:00
zpios_print(file, "Bad config command %d\n",
2008-12-05 19:32:34 +00:00
kcfg.cfg_cmd);
rc = -EINVAL;
break;
}
return rc;
}
static int
2009-01-14 16:38:35 +00:00
zpios_ioctl_cmd(struct file *file, unsigned long arg)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
zpios_cmd_t kcmd;
2008-12-05 19:32:34 +00:00
int rc = -EINVAL;
void *data = NULL;
2009-01-14 16:38:35 +00:00
rc = copy_from_user(&kcmd, (zpios_cfg_t *)arg, sizeof(kcmd));
2008-12-05 19:32:34 +00:00
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Unable to copy command structure "
2008-12-05 19:32:34 +00:00
"from user to kernel memory, %d\n", rc);
return -EFAULT;
}
2009-01-14 16:38:35 +00:00
if (kcmd.cmd_magic != ZPIOS_CMD_MAGIC) {
zpios_print(file, "Bad command magic 0x%x != 0x%x\n",
kcmd.cmd_magic, ZPIOS_CFG_MAGIC);
2008-12-05 19:32:34 +00:00
return -EINVAL;
}
/* Allocate memory for any opaque data the caller needed to pass on */
if (kcmd.cmd_data_size > 0) {
data = (void *)vmem_alloc(kcmd.cmd_data_size, KM_SLEEP);
if (data == NULL) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Unable to vmem_alloc() %ld "
2008-12-05 19:32:34 +00:00
"bytes for data buffer\n",
(long)kcmd.cmd_data_size);
return -ENOMEM;
}
2009-01-14 16:38:35 +00:00
rc = copy_from_user(data, (void *)(arg + offsetof(zpios_cmd_t,
2008-12-05 19:32:34 +00:00
cmd_data_str)), kcmd.cmd_data_size);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Unable to copy data buffer "
2008-12-05 19:32:34 +00:00
"from user to kernel memory, %d\n", rc);
vmem_free(data, kcmd.cmd_data_size);
return -EFAULT;
}
}
2009-01-14 16:38:35 +00:00
rc = zpios_do_one_run(file, &kcmd, kcmd.cmd_data_size, data);
2008-12-05 19:32:34 +00:00
if (data != NULL) {
/* If the test failed do not print out the stats */
if (rc)
goto cleanup;
2009-01-14 16:38:35 +00:00
rc = copy_to_user((void *)(arg + offsetof(zpios_cmd_t,
2008-12-05 19:32:34 +00:00
cmd_data_str)), data, kcmd.cmd_data_size);
if (rc) {
2009-01-14 16:38:35 +00:00
zpios_print(file, "Unable to copy data buffer "
2008-12-05 19:32:34 +00:00
"from kernel to user memory, %d\n", rc);
rc = -EFAULT;
}
cleanup:
vmem_free(data, kcmd.cmd_data_size);
}
return rc;
}
static int
2009-01-14 16:38:35 +00:00
zpios_ioctl(struct inode *inode, struct file *file,
2008-12-05 19:32:34 +00:00
unsigned int cmd, unsigned long arg)
{
unsigned int minor = iminor(file->f_dentry->d_inode);
int rc = 0;
/* Ignore tty ioctls */
if ((cmd & 0xffffff00) == ((int)'T') << 8)
return -ENOTTY;
2009-01-14 16:38:35 +00:00
if (minor >= ZPIOS_MINORS)
2008-12-05 19:32:34 +00:00
return -ENXIO;
switch (cmd) {
2009-01-14 16:38:35 +00:00
case ZPIOS_CFG:
rc = zpios_ioctl_cfg(file, arg);
2008-12-05 19:32:34 +00:00
break;
2009-01-14 16:38:35 +00:00
case ZPIOS_CMD:
rc = zpios_ioctl_cmd(file, arg);
2008-12-05 19:32:34 +00:00
break;
default:
2009-01-14 16:38:35 +00:00
zpios_print(file, "Bad ioctl command %d\n", cmd);
2008-12-05 19:32:34 +00:00
rc = -EINVAL;
break;
}
return rc;
}
/* I'm not sure why you would want to write in to this buffer from
* user space since its principle use is to pass test status info
* back to the user space, but I don't see any reason to prevent it.
*/
static ssize_t
2009-01-14 16:38:35 +00:00
zpios_write(struct file *file, const char __user *buf,
2008-12-05 19:32:34 +00:00
size_t count, loff_t *ppos)
{
unsigned int minor = iminor(file->f_dentry->d_inode);
2009-01-14 16:38:35 +00:00
zpios_info_t *info = (zpios_info_t *)file->private_data;
2008-12-05 19:32:34 +00:00
int rc = 0;
2009-01-14 16:38:35 +00:00
if (minor >= ZPIOS_MINORS)
2008-12-05 19:32:34 +00:00
return -ENXIO;
ASSERT(info);
ASSERT(info->info_buffer);
spin_lock(&info->info_lock);
/* Write beyond EOF */
if (*ppos >= info->info_size) {
rc = -EFBIG;
goto out;
}
/* Resize count if beyond EOF */
if (*ppos + count > info->info_size)
count = info->info_size - *ppos;
if (copy_from_user(info->info_buffer, buf, count)) {
rc = -EFAULT;
goto out;
}
*ppos += count;
rc = count;
out:
spin_unlock(&info->info_lock);
return rc;
}
static ssize_t
2009-01-14 16:38:35 +00:00
zpios_read(struct file *file, char __user *buf,
2008-12-05 19:32:34 +00:00
size_t count, loff_t *ppos)
{
unsigned int minor = iminor(file->f_dentry->d_inode);
2009-01-14 16:38:35 +00:00
zpios_info_t *info = (zpios_info_t *)file->private_data;
2008-12-05 19:32:34 +00:00
int rc = 0;
2009-01-14 16:38:35 +00:00
if (minor >= ZPIOS_MINORS)
2008-12-05 19:32:34 +00:00
return -ENXIO;
ASSERT(info);
ASSERT(info->info_buffer);
spin_lock(&info->info_lock);
/* Read beyond EOF */
if (*ppos >= info->info_size)
goto out;
/* Resize count if beyond EOF */
if (*ppos + count > info->info_size)
count = info->info_size - *ppos;
if (copy_to_user(buf, info->info_buffer + *ppos, count)) {
rc = -EFAULT;
goto out;
}
*ppos += count;
rc = count;
out:
spin_unlock(&info->info_lock);
return rc;
}
2009-01-14 16:38:35 +00:00
static loff_t zpios_seek(struct file *file, loff_t offset, int origin)
2008-12-05 19:32:34 +00:00
{
unsigned int minor = iminor(file->f_dentry->d_inode);
2009-01-14 16:38:35 +00:00
zpios_info_t *info = (zpios_info_t *)file->private_data;
2008-12-05 19:32:34 +00:00
int rc = -EINVAL;
2009-01-14 16:38:35 +00:00
if (minor >= ZPIOS_MINORS)
2008-12-05 19:32:34 +00:00
return -ENXIO;
ASSERT(info);
ASSERT(info->info_buffer);
spin_lock(&info->info_lock);
switch (origin) {
case 0: /* SEEK_SET - No-op just do it */
break;
case 1: /* SEEK_CUR - Seek from current */
offset = file->f_pos + offset;
break;
case 2: /* SEEK_END - Seek from end */
offset = info->info_size + offset;
break;
}
if (offset >= 0) {
file->f_pos = offset;
file->f_version = 0;
rc = offset;
}
spin_unlock(&info->info_lock);
return rc;
}
2009-01-14 16:38:35 +00:00
static struct file_operations zpios_fops = {
2008-12-05 19:32:34 +00:00
.owner = THIS_MODULE,
2009-01-14 16:38:35 +00:00
.open = zpios_open,
.release = zpios_release,
.ioctl = zpios_ioctl,
.read = zpios_read,
.write = zpios_write,
.llseek = zpios_seek,
2008-12-05 19:32:34 +00:00
};
2009-01-14 16:38:35 +00:00
static struct cdev zpios_cdev = {
2008-12-05 19:32:34 +00:00
.owner = THIS_MODULE,
2009-01-14 16:38:35 +00:00
.kobj = { .name = "zpios", },
2008-12-05 19:32:34 +00:00
};
static int __init
2009-01-14 16:38:35 +00:00
zpios_init(void)
2008-12-05 19:32:34 +00:00
{
dev_t dev;
int rc;
2009-01-14 16:38:35 +00:00
dev = MKDEV(ZPIOS_MAJOR, 0);
if ((rc = register_chrdev_region(dev, ZPIOS_MINORS, "zpios")))
2008-12-05 19:32:34 +00:00
goto error;
/* Support for registering a character driver */
2009-01-14 16:38:35 +00:00
cdev_init(&zpios_cdev, &zpios_fops);
if ((rc = cdev_add(&zpios_cdev, dev, ZPIOS_MINORS))) {
printk(KERN_ERR "ZPIOS: Error adding cdev, %d\n", rc);
kobject_put(&zpios_cdev.kobj);
unregister_chrdev_region(dev, ZPIOS_MINORS);
2008-12-05 19:32:34 +00:00
goto error;
}
/* Support for udev make driver info available in sysfs */
2009-01-14 16:38:35 +00:00
zpios_class = class_create(THIS_MODULE, "zpios");
if (IS_ERR(zpios_class)) {
rc = PTR_ERR(zpios_class);
printk(KERN_ERR "ZPIOS: Error creating zpios class, %d\n", rc);
cdev_del(&zpios_cdev);
unregister_chrdev_region(dev, ZPIOS_MINORS);
2008-12-05 19:32:34 +00:00
goto error;
}
2009-01-14 16:38:35 +00:00
class_device_create(zpios_class, NULL, dev, NULL, "zpios");
2008-12-05 19:32:34 +00:00
return 0;
error:
2009-01-14 16:38:35 +00:00
printk(KERN_ERR "ZPIOS: Error registering zpios device, %d\n", rc);
2008-12-05 19:32:34 +00:00
return rc;
}
static void
2009-01-14 16:38:35 +00:00
zpios_fini(void)
2008-12-05 19:32:34 +00:00
{
2009-01-14 16:38:35 +00:00
dev_t dev = MKDEV(ZPIOS_MAJOR, 0);
2008-12-05 19:32:34 +00:00
2009-01-14 16:38:35 +00:00
class_device_destroy(zpios_class, dev);
class_destroy(zpios_class);
2008-12-05 19:32:34 +00:00
2009-01-14 16:38:35 +00:00
cdev_del(&zpios_cdev);
unregister_chrdev_region(dev, ZPIOS_MINORS);
2008-12-05 19:32:34 +00:00
return;
}
2009-01-14 16:38:35 +00:00
module_init(zpios_init);
module_exit(zpios_fini);
2008-12-05 19:32:34 +00:00
MODULE_AUTHOR("LLNL / Sun");
MODULE_DESCRIPTION("Kernel PIOS implementation");
MODULE_LICENSE("GPL");