2007-07-10 17:57:28 -05:00
/*
* net / 9 p / util . c
*
* This file contains some helper functions
*
* Copyright ( C ) 2007 by Latchesar Ionkov < lucho @ ionkov . net >
* Copyright ( C ) 2004 by Eric Van Hensbergen < ericvh @ gmail . com >
* Copyright ( C ) 2002 by Ron Minnich < rminnich @ lanl . gov >
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to :
* Free Software Foundation
* 51 Franklin Street , Fifth Floor
* Boston , MA 02111 - 1301 USA
*
*/
# include <linux/module.h>
# include <linux/errno.h>
# include <linux/fs.h>
# include <linux/sched.h>
# include <linux/parser.h>
# include <linux/idr.h>
# include <net/9p/9p.h>
2008-03-05 07:08:09 -06:00
/**
* struct p9_idpool - per - connection accounting for tag idpool
* @ lock : protects the pool
* @ pool : idr to allocate tag id from
*
*/
2007-07-10 17:57:28 -05:00
struct p9_idpool {
2008-02-06 19:25:04 -06:00
spinlock_t lock ;
2007-07-10 17:57:28 -05:00
struct idr pool ;
} ;
2008-03-05 07:08:09 -06:00
/**
* p9_idpool_create - create a new per - connection id pool
*
*/
2007-07-10 17:57:28 -05:00
struct p9_idpool * p9_idpool_create ( void )
{
struct p9_idpool * p ;
p = kmalloc ( sizeof ( struct p9_idpool ) , GFP_KERNEL ) ;
if ( ! p )
return ERR_PTR ( - ENOMEM ) ;
2008-02-06 19:25:04 -06:00
spin_lock_init ( & p - > lock ) ;
2007-07-10 17:57:28 -05:00
idr_init ( & p - > pool ) ;
return p ;
}
EXPORT_SYMBOL ( p9_idpool_create ) ;
2008-03-05 07:08:09 -06:00
/**
* p9_idpool_destroy - create a new per - connection id pool
* @ p : idpool to destory
*/
2007-07-10 17:57:28 -05:00
void p9_idpool_destroy ( struct p9_idpool * p )
{
idr_destroy ( & p - > pool ) ;
kfree ( p ) ;
}
EXPORT_SYMBOL ( p9_idpool_destroy ) ;
/**
* p9_idpool_get - allocate numeric id from pool
2008-03-05 07:08:09 -06:00
* @ p : pool to allocate from
2007-07-10 17:57:28 -05:00
*
2008-03-05 07:08:09 -06:00
* Bugs : This seems to be an awful generic function , should it be in idr . c with
2007-07-10 17:57:28 -05:00
* the lock included in struct idr ?
*/
int p9_idpool_get ( struct p9_idpool * p )
{
int i = 0 ;
int error ;
2008-05-03 17:29:50 -05:00
unsigned long flags ;
2007-07-10 17:57:28 -05:00
retry :
if ( idr_pre_get ( & p - > pool , GFP_KERNEL ) = = 0 )
return 0 ;
2008-02-06 19:25:04 -06:00
spin_lock_irqsave ( & p - > lock , flags ) ;
2007-07-10 17:57:28 -05:00
/* no need to store exactly p, we just need something non-null */
error = idr_get_new ( & p - > pool , p , & i ) ;
2008-02-06 19:25:04 -06:00
spin_unlock_irqrestore ( & p - > lock , flags ) ;
2007-07-10 17:57:28 -05:00
if ( error = = - EAGAIN )
goto retry ;
else if ( error )
return - 1 ;
2008-10-16 08:30:07 -05:00
P9_DPRINTK ( P9_DEBUG_MUX , " id %d pool %p \n " , i , p ) ;
2007-07-10 17:57:28 -05:00
return i ;
}
EXPORT_SYMBOL ( p9_idpool_get ) ;
/**
* p9_idpool_put - release numeric id from pool
2008-03-05 07:08:09 -06:00
* @ id : numeric id which is being released
* @ p : pool to release id into
2007-07-10 17:57:28 -05:00
*
2008-03-05 07:08:09 -06:00
* Bugs : This seems to be an awful generic function , should it be in idr . c with
2007-07-10 17:57:28 -05:00
* the lock included in struct idr ?
*/
void p9_idpool_put ( int id , struct p9_idpool * p )
{
2008-05-03 17:29:50 -05:00
unsigned long flags ;
2008-10-16 08:30:07 -05:00
P9_DPRINTK ( P9_DEBUG_MUX , " id %d pool %p \n " , id , p ) ;
2008-02-06 19:25:04 -06:00
spin_lock_irqsave ( & p - > lock , flags ) ;
2007-07-10 17:57:28 -05:00
idr_remove ( & p - > pool , id ) ;
2008-02-06 19:25:04 -06:00
spin_unlock_irqrestore ( & p - > lock , flags ) ;
2007-07-10 17:57:28 -05:00
}
EXPORT_SYMBOL ( p9_idpool_put ) ;
/**
* p9_idpool_check - check if the specified id is available
2008-03-05 07:08:09 -06:00
* @ id : id to check
* @ p : pool to check
2007-07-10 17:57:28 -05:00
*/
2008-03-05 07:08:09 -06:00
2007-07-10 17:57:28 -05:00
int p9_idpool_check ( int id , struct p9_idpool * p )
{
return idr_find ( & p - > pool , id ) ! = NULL ;
}
EXPORT_SYMBOL ( p9_idpool_check ) ;
2008-03-05 07:08:09 -06:00