Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
43b107c1
Commit
43b107c1
authored
Oct 29, 2009
by
Akinobu Mita
Committed by
james toy
Oct 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by:
Andrew Morton
<
akpm@linux-foundation.org
>
parent
6479a0e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
21 deletions
+12
-21
lib/genalloc.c
lib/genalloc.c
+12
-21
No files found.
lib/genalloc.c
View file @
43b107c1
...
...
@@ -11,6 +11,7 @@
*/
#include <linux/module.h>
#include <linux/bitmap.h>
#include <linux/genalloc.h>
...
...
@@ -114,7 +115,7 @@ unsigned long gen_pool_alloc(struct gen_pool *pool, size_t size)
struct
gen_pool_chunk
*
chunk
;
unsigned
long
addr
,
flags
;
int
order
=
pool
->
min_alloc_order
;
int
nbits
,
bit
,
start_bit
,
end_bit
;
int
nbits
,
start_bit
,
end_bit
;
if
(
size
==
0
)
return
0
;
...
...
@@ -129,29 +130,19 @@ unsigned long gen_pool_alloc(struct gen_pool *pool, size_t size)
end_bit
-=
nbits
+
1
;
spin_lock_irqsave
(
&
chunk
->
lock
,
flags
);
bit
=
-
1
;
while
(
bit
+
1
<
end_bit
)
{
bit
=
find_next_zero_bit
(
chunk
->
bits
,
end_bit
,
bit
+
1
);
if
(
bit
>=
end_bit
)
break
;
start_bit
=
bit
;
if
(
nbits
>
1
)
{
bit
=
find_next_bit
(
chunk
->
bits
,
bit
+
nbits
,
bit
+
1
);
if
(
bit
-
start_bit
<
nbits
)
continue
;
}
addr
=
chunk
->
start_addr
+
((
unsigned
long
)
start_bit
<<
order
);
while
(
nbits
--
)
__set_bit
(
start_bit
++
,
chunk
->
bits
);
start_bit
=
bitmap_find_next_zero_area
(
chunk
->
bits
,
end_bit
,
0
,
nbits
,
0
);
if
(
start_bit
>=
end_bit
)
{
spin_unlock_irqrestore
(
&
chunk
->
lock
,
flags
);
read_unlock
(
&
pool
->
lock
);
return
addr
;
continue
;
}
addr
=
chunk
->
start_addr
+
((
unsigned
long
)
start_bit
<<
order
);
bitmap_set
(
chunk
->
bits
,
start_bit
,
nbits
);
spin_unlock_irqrestore
(
&
chunk
->
lock
,
flags
);
read_unlock
(
&
pool
->
lock
);
return
addr
;
}
read_unlock
(
&
pool
->
lock
);
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment