staging: dst: fix coding style

Signed-off-by: Mariusz Ziulek <mz.mzet@gmail.com>
Cc: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Mariusz Ziulek
2009-11-12 15:01:16 +01:00
committed by Greg Kroah-Hartman
parent f5e08ca722
commit d52ac3f24e
6 changed files with 135 additions and 116 deletions

View File

@@ -64,7 +64,8 @@ err_out_exit:
return ERR_PTR(err); return ERR_PTR(err);
} }
static struct crypto_ablkcipher *dst_init_cipher(struct dst_crypto_ctl *ctl, u8 *key) static struct crypto_ablkcipher *dst_init_cipher(struct dst_crypto_ctl *ctl,
u8 *key)
{ {
int err = -EINVAL; int err = -EINVAL;
struct crypto_ablkcipher *cipher; struct crypto_ablkcipher *cipher;
@@ -139,7 +140,8 @@ err_out_free_pages:
* Initialize crypto engine for given node. * Initialize crypto engine for given node.
* Setup cipher/hash, keys, pool of threads and private data. * Setup cipher/hash, keys, pool of threads and private data.
*/ */
static int dst_crypto_engine_init(struct dst_crypto_engine *e, struct dst_node *n) static int dst_crypto_engine_init(struct dst_crypto_engine *e,
struct dst_node *n)
{ {
int err; int err;
struct dst_crypto_ctl *ctl = &n->crypto; struct dst_crypto_ctl *ctl = &n->crypto;
@@ -198,8 +200,7 @@ static void dst_crypto_engine_exit(struct dst_crypto_engine *e)
/* /*
* Waiting for cipher processing to be completed. * Waiting for cipher processing to be completed.
*/ */
struct dst_crypto_completion struct dst_crypto_completion {
{
struct completion complete; struct completion complete;
int error; int error;
}; };
@@ -411,9 +412,9 @@ static void dst_crypto_thread_cleanup(void *private)
* Initialize crypto engine for given node: store keys, create pool * Initialize crypto engine for given node: store keys, create pool
* of threads, initialize each one. * of threads, initialize each one.
* *
* Each thread has unique ID, but 0 and 1 are reserved for receiving and accepting * Each thread has unique ID, but 0 and 1 are reserved for receiving and
* threads (if export node), so IDs could start from 2, but starting them * accepting threads (if export node), so IDs could start from 2, but starting
* from 10 allows easily understand what this thread is for. * them from 10 allows easily understand what this thread is for.
*/ */
int dst_node_crypto_init(struct dst_node *n, struct dst_crypto_ctl *ctl) int dst_node_crypto_init(struct dst_node *n, struct dst_crypto_ctl *ctl)
{ {
@@ -497,7 +498,7 @@ static void dst_dump_bio(struct bio *bio)
p = kmap(bv->bv_page) + bv->bv_offset; p = kmap(bv->bv_page) + bv->bv_offset;
for (i = 0; i < bv->bv_len; ++i) for (i = 0; i < bv->bv_len; ++i)
printk("%02x ", p[i]); printk(KERN_DEBUG "%02x ", p[i]);
kunmap(bv->bv_page); kunmap(bv->bv_page);
printk("\n"); printk("\n");
} }
@@ -572,9 +573,9 @@ static int dst_crypto_process_receiving(struct dst_crypto_engine *e,
unsigned int i; unsigned int i;
printk(", recv/calc: "); printk(", recv/calc: ");
for (i=0; i<crypto_hash_digestsize(e->hash); ++i) { for (i = 0; i < crypto_hash_digestsize(e->hash); ++i)
printk("%02x/%02x ", recv_hash[i], hash[i]); printk("%02x/%02x ", recv_hash[i], hash[i]);
}
} }
printk("\n"); printk("\n");
#endif #endif
@@ -680,8 +681,9 @@ static int dst_export_crypto_action(void *crypto_engine, void *schedule_data)
struct dst_export_priv *p = bio->bi_private; struct dst_export_priv *p = bio->bi_private;
int err; int err;
dprintk("%s: e: %p, data: %p, bio: %llu/%u, dir: %lu.\n", __func__, dprintk("%s: e: %p, data: %p, bio: %llu/%u, dir: %lu.\n",
e, e->data, (u64)bio->bi_sector, bio->bi_size, bio_data_dir(bio)); __func__, e, e->data, (u64)bio->bi_sector,
bio->bi_size, bio_data_dir(bio));
e->enc = (bio_data_dir(bio) == READ); e->enc = (bio_data_dir(bio) == READ);
e->iv = p->cmd.id; e->iv = p->cmd.id;

View File

@@ -116,7 +116,7 @@ static int dst_request(struct request_queue *q, struct bio *bio)
* bio_rw_flagged(bio, BIO_RW_DISCARD) only, which does not * bio_rw_flagged(bio, BIO_RW_DISCARD) only, which does not
* work in this case. * work in this case.
*/ */
//err = -EOPNOTSUPP; /* err = -EOPNOTSUPP; */
err = 0; err = 0;
goto end_io; goto end_io;
} }
@@ -197,7 +197,8 @@ static int dst_node_create_disk(struct dst_node *n)
n->disk->fops = &dst_blk_ops; n->disk->fops = &dst_blk_ops;
n->disk->queue = n->queue; n->disk->queue = n->queue;
n->disk->private_data = n; n->disk->private_data = n;
snprintf(n->disk->disk_name, sizeof(n->disk->disk_name), "dst-%s", n->name); snprintf(n->disk->disk_name, sizeof(n->disk->disk_name),
"dst-%s", n->name);
return 0; return 0;
@@ -246,7 +247,8 @@ static ssize_t dst_show_type(struct device *dev,
return sprintf(buf, "%u.%u.%u.%u:%d\n", return sprintf(buf, "%u.%u.%u.%u:%d\n",
NIPQUAD(sin->sin_addr.s_addr), ntohs(sin->sin_port)); NIPQUAD(sin->sin_addr.s_addr), ntohs(sin->sin_port));
} else if (family == AF_INET6) { } else if (family == AF_INET6) {
struct sockaddr_in6 *sin = (struct sockaddr_in6 *)&info->net.addr; struct sockaddr_in6 *sin = (struct sockaddr_in6 *)
&info->net.addr;
return sprintf(buf, return sprintf(buf,
"%pi6:%d\n", "%pi6:%d\n",
&sin->sin6_addr, ntohs(sin->sin6_port)); &sin->sin6_addr, ntohs(sin->sin6_port));
@@ -358,7 +360,7 @@ err_out_exit:
*/ */
static inline unsigned int dst_hash(char *str, unsigned int size) static inline unsigned int dst_hash(char *str, unsigned int size)
{ {
return (jhash(str, size, 0) % dst_hashtable_size); return jhash(str, size, 0) % dst_hashtable_size;
} }
static void dst_node_remove(struct dst_node *n) static void dst_node_remove(struct dst_node *n)
@@ -641,7 +643,8 @@ static int dst_start_remote(struct dst_node *n)
dst_node_set_size(n); dst_node_set_size(n);
add_disk(n->disk); add_disk(n->disk);
dprintk("DST: started remote node '%s', minor: %d.\n", n->name, n->disk->first_minor); dprintk("DST: started remote node '%s', minor: %d.\n",
n->name, n->disk->first_minor);
return 0; return 0;
} }
@@ -740,7 +743,8 @@ static int dst_node_remove_unload(struct dst_node *n)
* counter will be equal to 1), * counter will be equal to 1),
* and subsequent dst_node_put() calls will free the node. * and subsequent dst_node_put() calls will free the node.
*/ */
dprintk("%s: going to sleep with %d refcnt.\n", __func__, atomic_read(&n->refcnt)); dprintk("%s: going to sleep with %d refcnt.\n",
__func__, atomic_read(&n->refcnt));
wait_event(n->wait, atomic_read(&n->refcnt) <= 2); wait_event(n->wait, atomic_read(&n->refcnt) <= 2);
dst_node_put(n); dst_node_put(n);

View File

@@ -53,7 +53,8 @@ void dst_export_exit(void)
* its permissions are checked in a security attributes and sent * its permissions are checked in a security attributes and sent
* back. * back.
*/ */
static unsigned int dst_check_permissions(struct dst_state *main, struct dst_state *st) static unsigned int dst_check_permissions(struct dst_state *main,
struct dst_state *st)
{ {
struct dst_node *n = main->node; struct dst_node *n = main->node;
struct dst_secure *sentry; struct dst_secure *sentry;
@@ -73,9 +74,9 @@ static unsigned int dst_check_permissions(struct dst_state *main, struct dst_sta
/* /*
* This '2' below is a port field. This may be very wrong to do * This '2' below is a port field. This may be very wrong to do
* in atalk for example though. If there will be any need to extent * in atalk for example though. If there will be any need
* protocol to something else, I can create per-family helpers and * to extent protocol to something else, I can create
* use them instead of this memcmp. * per-family helpers and use them instead of this memcmp.
*/ */
if (memcmp(s->addr.sa_data + 2, sa->sa_data + 2, if (memcmp(s->addr.sa_data + 2, sa->sa_data + 2,
sa->sa_data_len - 2)) sa->sa_data_len - 2))
@@ -125,8 +126,8 @@ static struct dst_state *dst_accept_client(struct dst_state *st)
* Magic HZ? Polling check above is not safe in * Magic HZ? Polling check above is not safe in
* all cases (like socket reset in BH context), * all cases (like socket reset in BH context),
* so it is simpler just to postpone it to the * so it is simpler just to postpone it to the
* process context instead of implementing special * process context instead of implementing
* locking there. * special locking there.
*/ */
schedule_timeout(HZ); schedule_timeout(HZ);
} }
@@ -272,8 +273,8 @@ static void dst_state_cleanup_export(struct dst_state *st)
if (p) if (p)
bio_put(p->bio); bio_put(p->bio);
dprintk("%s: st: %p, refcnt: %d, list_empty: %d, p: %p.\n", dprintk("%s: st: %p, refcnt: %d, list_empty: %d, p: "
__func__, st, atomic_read(&st->refcnt), "%p.\n", __func__, st, atomic_read(&st->refcnt),
list_empty(&st->request_list), p); list_empty(&st->request_list), p);
} }
} }
@@ -341,8 +342,9 @@ static int dst_accept(void *init_data, void *schedule_data)
int dst_start_export(struct dst_node *n) int dst_start_export(struct dst_node *n)
{ {
if (list_empty(&n->security_list)) { if (list_empty(&n->security_list)) {
printk(KERN_ERR "You are trying to export node '%s' without security attributes.\n" printk(KERN_ERR "You are trying to export node '%s' "
"No clients will be allowed to connect. Exiting.\n", n->name); "without security attributes.\nNo clients will "
"be allowed to connect. Exiting.\n", n->name);
return -EINVAL; return -EINVAL;
} }
return dst_node_trans_init(n, sizeof(struct dst_export_priv)); return dst_node_trans_init(n, sizeof(struct dst_export_priv));
@@ -552,7 +554,8 @@ int dst_process_io(struct dst_state *st)
if (!bio) if (!bio)
goto err_out_exit; goto err_out_exit;
priv = (struct dst_export_priv *)(((void *)bio) - sizeof (struct dst_export_priv)); priv = (struct dst_export_priv *)(((void *)bio) -
sizeof (struct dst_export_priv));
priv->state = dst_state_get(st); priv->state = dst_state_get(st);
priv->bio = bio; priv->bio = bio;

View File

@@ -30,13 +30,13 @@
* Polling machinery. * Polling machinery.
*/ */
struct dst_poll_helper struct dst_poll_helper {
{
poll_table pt; poll_table pt;
struct dst_state *st; struct dst_state *st;
}; };
static int dst_queue_wake(wait_queue_t *wait, unsigned mode, int sync, void *key) static int dst_queue_wake(wait_queue_t *wait, unsigned mode,
int sync, void *key)
{ {
struct dst_state *st = container_of(wait, struct dst_state, wait); struct dst_state *st = container_of(wait, struct dst_state, wait);
@@ -217,8 +217,8 @@ void dst_dump_addr(struct socket *sk, struct sockaddr *sa, char *str)
{ {
if (sk->ops->family == AF_INET) { if (sk->ops->family == AF_INET) {
struct sockaddr_in *sin = (struct sockaddr_in *)sa; struct sockaddr_in *sin = (struct sockaddr_in *)sa;
printk(KERN_INFO "%s %u.%u.%u.%u:%d.\n", printk(KERN_INFO "%s %u.%u.%u.%u:%d.\n", str,
str, NIPQUAD(sin->sin_addr.s_addr), ntohs(sin->sin_port)); NIPQUAD(sin->sin_addr.s_addr), ntohs(sin->sin_port));
} else if (sk->ops->family == AF_INET6) { } else if (sk->ops->family == AF_INET6) {
struct sockaddr_in6 *sin = (struct sockaddr_in6 *)sa; struct sockaddr_in6 *sin = (struct sockaddr_in6 *)sa;
printk(KERN_INFO "%s %pi6:%d", printk(KERN_INFO "%s %pi6:%d",
@@ -271,13 +271,13 @@ err_out_exit:
* State reset is used to reconnect to the remote peer. * State reset is used to reconnect to the remote peer.
* May fail, but who cares, we will try again later. * May fail, but who cares, we will try again later.
*/ */
static void inline dst_state_reset_nolock(struct dst_state *st) static inline void dst_state_reset_nolock(struct dst_state *st)
{ {
dst_state_exit_connected(st); dst_state_exit_connected(st);
dst_state_init_connected(st); dst_state_init_connected(st);
} }
static void inline dst_state_reset(struct dst_state *st) static inline void dst_state_reset(struct dst_state *st)
{ {
dst_state_lock(st); dst_state_lock(st);
dst_state_reset_nolock(st); dst_state_reset_nolock(st);
@@ -335,9 +335,11 @@ static int dst_send_ping(struct dst_state *st)
cmd->cmd = __cpu_to_be32(DST_PING); cmd->cmd = __cpu_to_be32(DST_PING);
err = dst_data_send_header(st->socket, cmd, sizeof(struct dst_cmd), 0); err = dst_data_send_header(st->socket, cmd,
sizeof(struct dst_cmd), 0);
} }
dprintk("%s: st: %p, socket: %p, err: %d.\n", __func__, st, st->socket, err); dprintk("%s: st: %p, socket: %p, err: %d.\n", __func__,
st, st->socket, err);
dst_state_unlock(st); dst_state_unlock(st);
return err; return err;
@@ -390,8 +392,7 @@ int dst_data_recv(struct dst_state *st, void *data, unsigned int size)
err = -ECONNRESET; err = -ECONNRESET;
dst_state_lock(st); dst_state_lock(st);
if ( st->socket && if (st->socket && (st->read_socket == st->socket) &&
(st->read_socket == st->socket) &&
(revents & POLLIN)) { (revents & POLLIN)) {
err = dst_data_recv_raw(st, data, size); err = dst_data_recv_raw(st, data, size);
if (err > 0) { if (err > 0) {
@@ -402,8 +403,9 @@ int dst_data_recv(struct dst_state *st, void *data, unsigned int size)
} }
if (revents & err_mask || !st->socket) { if (revents & err_mask || !st->socket) {
dprintk("%s: revents: %x, socket: %p, size: %u, err: %d.\n", dprintk("%s: revents: %x, socket: %p, size: %u, "
__func__, revents, st->socket, size, err); "err: %d.\n", __func__, revents,
st->socket, size, err);
err = -ECONNRESET; err = -ECONNRESET;
} }
@@ -440,7 +442,8 @@ static int dst_process_cfg(struct dst_state *st)
/* /*
* Receive block IO from the network. * Receive block IO from the network.
*/ */
static int dst_recv_bio(struct dst_state *st, struct bio *bio, unsigned int total_size) static int dst_recv_bio(struct dst_state *st, struct bio *bio,
unsigned int total_size)
{ {
struct bio_vec *bv; struct bio_vec *bv;
int i, err; int i, err;
@@ -450,9 +453,10 @@ static int dst_recv_bio(struct dst_state *st, struct bio *bio, unsigned int tota
bio_for_each_segment(bv, bio, i) { bio_for_each_segment(bv, bio, i) {
sz = min(total_size, bv->bv_len); sz = min(total_size, bv->bv_len);
dprintk("%s: bio: %llu/%u, total: %u, len: %u, sz: %u, off: %u.\n", dprintk("%s: bio: %llu/%u, total: %u, len: %u, sz: %u, "
__func__, (u64)bio->bi_sector, bio->bi_size, total_size, "off: %u.\n", __func__, (u64)bio->bi_sector,
bv->bv_len, sz, bv->bv_offset); bio->bi_size, total_size, bv->bv_len, sz,
bv->bv_offset);
data = kmap(bv->bv_page) + bv->bv_offset; data = kmap(bv->bv_page) + bv->bv_offset;
err = dst_data_recv(st, data, sz); err = dst_data_recv(st, data, sz);
@@ -590,7 +594,8 @@ static int dst_recv_processing(struct dst_state *st)
cmd->flags, cmd->rw); cmd->flags, cmd->rw);
/* /*
* This should catch protocol breakage and random garbage instead of commands. * This should catch protocol breakage and random garbage
* instead of commands.
*/ */
if (unlikely(cmd->csize > st->size - sizeof(struct dst_cmd))) { if (unlikely(cmd->csize > st->size - sizeof(struct dst_cmd))) {
err = -EBADMSG; err = -EBADMSG;

View File

@@ -30,8 +30,7 @@
* When action is being performed, thread can not be used by other users, * When action is being performed, thread can not be used by other users,
* instead they will sleep until there is free thread to pick their work. * instead they will sleep until there is free thread to pick their work.
*/ */
struct thread_pool_worker struct thread_pool_worker {
{
struct list_head worker_entry; struct list_head worker_entry;
struct task_struct *thread; struct task_struct *thread;
@@ -116,10 +115,12 @@ void thread_pool_del_worker(struct thread_pool *p)
struct thread_pool_worker *w = NULL; struct thread_pool_worker *w = NULL;
while (!w && p->thread_num) { while (!w && p->thread_num) {
wait_event(p->wait, !list_empty(&p->ready_list) || !p->thread_num); wait_event(p->wait, !list_empty(&p->ready_list) ||
!p->thread_num);
dprintk("%s: locking list_empty: %d, thread_num: %d.\n", dprintk("%s: locking list_empty: %d, thread_num: %d.\n",
__func__, list_empty(&p->ready_list), p->thread_num); __func__, list_empty(&p->ready_list),
p->thread_num);
mutex_lock(&p->thread_lock); mutex_lock(&p->thread_lock);
if (!list_empty(&p->ready_list)) { if (!list_empty(&p->ready_list)) {
@@ -127,8 +128,9 @@ void thread_pool_del_worker(struct thread_pool *p)
struct thread_pool_worker, struct thread_pool_worker,
worker_entry); worker_entry);
dprintk("%s: deleting w: %p, thread_num: %d, list: %p [%p.%p].\n", dprintk("%s: deleting w: %p, thread_num: %d, "
__func__, w, p->thread_num, &p->ready_list, "list: %p [%p.%p].\n", __func__,
w, p->thread_num, &p->ready_list,
p->ready_list.prev, p->ready_list.next); p->ready_list.prev, p->ready_list.next);
p->thread_num--; p->thread_num--;
@@ -321,7 +323,8 @@ int thread_pool_schedule_private(struct thread_pool *p,
w->has_data = 1; w->has_data = 1;
wake_up(&w->wait); wake_up(&w->wait);
} else { } else {
list_move_tail(&w->worker_entry, &p->ready_list); list_move_tail(&w->worker_entry,
&p->ready_list);
} }
break; break;

View File

@@ -88,9 +88,9 @@ static int dst_trans_insert(struct dst_trans *new)
new->send_time = jiffies; new->send_time = jiffies;
if (ret) { if (ret) {
printk("%s: exist: old: gen: %llu, bio: %llu/%u, send_time: %lu, " printk(KERN_DEBUG "%s: exist: old: gen: %llu, bio: %llu/%u, "
"new: gen: %llu, bio: %llu/%u, send_time: %lu.\n", "send_time: %lu, new: gen: %llu, bio: %llu/%u, "
__func__, "send_time: %lu.\n", __func__,
ret->gen, (u64)ret->bio->bi_sector, ret->gen, (u64)ret->bio->bi_sector,
ret->bio->bi_size, ret->send_time, ret->bio->bi_size, ret->send_time,
new->gen, (u64)new->bio->bi_sector, new->gen, (u64)new->bio->bi_sector,
@@ -206,7 +206,8 @@ err_out_exit:
*/ */
static void dst_trans_scan(struct work_struct *work) static void dst_trans_scan(struct work_struct *work)
{ {
struct dst_node *n = container_of(work, struct dst_node, trans_work.work); struct dst_node *n = container_of(work, struct dst_node,
trans_work.work);
struct rb_node *rb_node; struct rb_node *rb_node;
struct dst_trans *t; struct dst_trans *t;
unsigned long timeout = n->trans_scan_timeout; unsigned long timeout = n->trans_scan_timeout;
@@ -246,8 +247,8 @@ static void dst_trans_scan(struct work_struct *work)
mutex_unlock(&n->trans_lock); mutex_unlock(&n->trans_lock);
/* /*
* If no timeout specified then system is in the middle of exiting process, * If no timeout specified then system is in the middle of exiting
* so no need to reschedule scanning process again. * process, so no need to reschedule scanning process again.
*/ */
if (timeout) { if (timeout) {
if (!num) if (!num)
@@ -313,7 +314,8 @@ int dst_node_trans_init(struct dst_node *n, unsigned int size)
if (!n->trans_cache) if (!n->trans_cache)
goto err_out_exit; goto err_out_exit;
n->trans_pool = mempool_create_slab_pool(dst_mempool_num, n->trans_cache); n->trans_pool = mempool_create_slab_pool(dst_mempool_num,
n->trans_cache);
if (!n->trans_pool) if (!n->trans_pool)
goto err_out_cache_destroy; goto err_out_cache_destroy;