9p: fix flags length in net
authorSteven Rostedt <rostedt@goodmis.org>
Sat, 3 May 2008 22:29:50 +0000 (17:29 -0500)
committerEric Van Hensbergen <ericvh@opteron.9grid.us>
Thu, 15 May 2008 00:23:26 +0000 (19:23 -0500)
Some files in the net/9p directory uses "int" for flags. This can
cause hard to find bugs on some architectures. This patch converts the
flags to use "long" instead.

This bug was discovered by doing an allyesconfig make on the -rt kernel
where checks are done to ensure all flags are of size sizeof(long).

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Acked-by: Eric Van Hensbergen <ericvh@gmail.com>
net/9p/trans_virtio.c
net/9p/util.c

index d23ed60483c37b38b77f933a52bd71b4ee1b4794..42adc052b149251a46e3ac8a1bf039c91f00417f 100644 (file)
@@ -201,7 +201,7 @@ static void p9_virtio_close(struct p9_trans *trans)
 {
        struct virtio_chan *chan = trans->priv;
        int count;
-       unsigned int flags;
+       unsigned long flags;
 
        spin_lock_irqsave(&chan->lock, flags);
        p9_idpool_destroy(chan->tagpool);
index 4d564604533052124e168365395cbad546e5ccbc..958fc58cd1ffbb0723552b180302c569387adfb4 100644 (file)
@@ -88,7 +88,7 @@ int p9_idpool_get(struct p9_idpool *p)
 {
        int i = 0;
        int error;
-       unsigned int flags;
+       unsigned long flags;
 
 retry:
        if (idr_pre_get(&p->pool, GFP_KERNEL) == 0)
@@ -120,7 +120,7 @@ EXPORT_SYMBOL(p9_idpool_get);
 
 void p9_idpool_put(int id, struct p9_idpool *p)
 {
-       unsigned int flags;
+       unsigned long flags;
        spin_lock_irqsave(&p->lock, flags);
        idr_remove(&p->pool, id);
        spin_unlock_irqrestore(&p->lock, flags);