Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
f1fd306a
Commit
f1fd306a
authored
Aug 26, 2011
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minixfs: kill manual hweight(), simplify
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
016e8d44
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
28 deletions
+15
-28
fs/minix/bitmap.c
fs/minix/bitmap.c
+14
-27
fs/minix/minix.h
fs/minix/minix.h
+1
-1
No files found.
fs/minix/bitmap.c
View file @
f1fd306a
...
@@ -16,39 +16,26 @@
...
@@ -16,39 +16,26 @@
#include <linux/bitops.h>
#include <linux/bitops.h>
#include <linux/sched.h>
#include <linux/sched.h>
static
const
int
nibblemap
[]
=
{
4
,
3
,
3
,
2
,
3
,
2
,
2
,
1
,
3
,
2
,
2
,
1
,
2
,
1
,
1
,
0
};
static
DEFINE_SPINLOCK
(
bitmap_lock
);
static
DEFINE_SPINLOCK
(
bitmap_lock
);
static
unsigned
long
count_free
(
struct
buffer_head
*
map
[],
unsigned
blocksize
,
__u32
numbits
)
/*
* bitmap consists of blocks filled with 16bit words
* bit set == busy, bit clear == free
* endianness is a mess, but for counting zero bits it really doesn't matter...
*/
static
__u32
count_free
(
struct
buffer_head
*
map
[],
unsigned
blocksize
,
__u32
numbits
)
{
{
unsigned
i
,
j
,
sum
=
0
;
__u32
sum
=
0
;
struct
buffer_head
*
bh
;
unsigned
blocks
=
DIV_ROUND_UP
(
numbits
,
blocksize
*
8
);
unsigned
numblocks
=
minix_blocks_needed
(
numbits
,
blocksize
);
while
(
blocks
--
)
{
for
(
i
=
0
;
i
<
numblocks
-
1
;
i
++
)
{
unsigned
words
=
blocksize
/
2
;
if
(
!
(
bh
=
map
[
i
]))
__u16
*
p
=
(
__u16
*
)(
*
map
++
)
->
b_data
;
return
(
0
);
while
(
words
--
)
for
(
j
=
0
;
j
<
bh
->
b_size
;
j
++
)
sum
+=
16
-
hweight16
(
*
p
++
);
sum
+=
nibblemap
[
bh
->
b_data
[
j
]
&
0xf
]
+
nibblemap
[(
bh
->
b_data
[
j
]
>>
4
)
&
0xf
];
}
if
(
numblocks
==
0
||
!
(
bh
=
map
[
numblocks
-
1
]))
return
(
0
);
i
=
((
numbits
-
(
numblocks
-
1
)
*
bh
->
b_size
*
8
)
/
16
)
*
2
;
for
(
j
=
0
;
j
<
i
;
j
++
)
{
sum
+=
nibblemap
[
bh
->
b_data
[
j
]
&
0xf
]
+
nibblemap
[(
bh
->
b_data
[
j
]
>>
4
)
&
0xf
];
}
}
i
=
numbits
%
16
;
return
sum
;
if
(
i
!=
0
)
{
i
=
*
(
__u16
*
)(
&
bh
->
b_data
[
j
])
|
~
((
1
<<
i
)
-
1
);
sum
+=
nibblemap
[
i
&
0xf
]
+
nibblemap
[(
i
>>
4
)
&
0xf
];
sum
+=
nibblemap
[(
i
>>
8
)
&
0xf
]
+
nibblemap
[(
i
>>
12
)
&
0xf
];
}
return
(
sum
);
}
}
void
minix_free_block
(
struct
inode
*
inode
,
unsigned
long
block
)
void
minix_free_block
(
struct
inode
*
inode
,
unsigned
long
block
)
...
...
fs/minix/minix.h
View file @
f1fd306a
...
@@ -130,7 +130,7 @@ static inline int minix_find_first_zero_bit(const void *vaddr, unsigned size)
...
@@ -130,7 +130,7 @@ static inline int minix_find_first_zero_bit(const void *vaddr, unsigned size)
if
(
!
size
)
if
(
!
size
)
return
0
;
return
0
;
size
=
(
size
>>
4
)
+
((
size
&
15
)
>
0
)
;
size
>>=
4
;
while
(
*
p
++
==
0xffff
)
{
while
(
*
p
++
==
0xffff
)
{
if
(
--
size
==
0
)
if
(
--
size
==
0
)
return
(
p
-
addr
)
<<
4
;
return
(
p
-
addr
)
<<
4
;
...
...
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