Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
fbc78770
Commit
fbc78770
authored
Mar 08, 2011
by
Brad Hards
Committed by
Rusty Russell
Mar 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alloc: remove unused variable
lp_bits was only ever written to.
parent
fb1dfd09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
ccan/alloc/alloc.c
ccan/alloc/alloc.c
+1
-3
No files found.
ccan/alloc/alloc.c
View file @
fbc78770
...
...
@@ -467,9 +467,7 @@ static void recombine_small_pages(struct header *head, unsigned long poolsize,
static
u16
get_large_page
(
struct
header
*
head
,
unsigned
long
poolsize
,
unsigned
int
sp_bits
)
{
unsigned
int
lp_bits
,
page
;
lp_bits
=
sp_bits
+
BITS_FROM_SMALL_TO_LARGE_PAGE
;
unsigned
int
page
;
page
=
pop_from_list
(
head
,
&
head
->
large_free_list
,
sp_bits
);
if
(
likely
(
page
))
...
...
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