Staging: lustre: osc: Declare as static
Declare osc_extent_find and osc_unreserve_grant as static since they are used only in this particular file. Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
62dc2f66a9
commit
6ef3f3c736
1 changed files with 5 additions and 5 deletions
|
@ -619,9 +619,9 @@ static inline int overlapped(struct osc_extent *ex1, struct osc_extent *ex2)
|
||||||
* Find or create an extent which includes @index, core function to manage
|
* Find or create an extent which includes @index, core function to manage
|
||||||
* extent tree.
|
* extent tree.
|
||||||
*/
|
*/
|
||||||
struct osc_extent *osc_extent_find(const struct lu_env *env,
|
static struct osc_extent *osc_extent_find(const struct lu_env *env,
|
||||||
struct osc_object *obj, pgoff_t index,
|
struct osc_object *obj, pgoff_t index,
|
||||||
int *grants)
|
int *grants)
|
||||||
|
|
||||||
{
|
{
|
||||||
struct client_obd *cli = osc_cli(obj);
|
struct client_obd *cli = osc_cli(obj);
|
||||||
|
@ -1420,8 +1420,8 @@ static void __osc_unreserve_grant(struct client_obd *cli,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void osc_unreserve_grant(struct client_obd *cli,
|
static void osc_unreserve_grant(struct client_obd *cli,
|
||||||
unsigned int reserved, unsigned int unused)
|
unsigned int reserved, unsigned int unused)
|
||||||
{
|
{
|
||||||
client_obd_list_lock(&cli->cl_loi_list_lock);
|
client_obd_list_lock(&cli->cl_loi_list_lock);
|
||||||
__osc_unreserve_grant(cli, reserved, unused);
|
__osc_unreserve_grant(cli, reserved, unused);
|
||||||
|
|
Loading…
Reference in a new issue