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
nexedi
linux
Commits
d3cf502b
Commit
d3cf502b
authored
Dec 16, 2008
by
Artem Bityutskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UBIFS: various comment improvements and fixes
Signed-off-by:
Artem Bityutskiy
<
Artem.Bityutskiy@nokia.com
>
parent
21a60258
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
22 deletions
+24
-22
fs/ubifs/lprops.c
fs/ubifs/lprops.c
+6
-6
fs/ubifs/ubifs.h
fs/ubifs/ubifs.h
+18
-16
No files found.
fs/ubifs/lprops.c
View file @
d3cf502b
...
@@ -520,13 +520,13 @@ static int is_lprops_dirty(struct ubifs_info *c, struct ubifs_lprops *lprops)
...
@@ -520,13 +520,13 @@ static int is_lprops_dirty(struct ubifs_info *c, struct ubifs_lprops *lprops)
* @flags: new flags
* @flags: new flags
* @idx_gc_cnt: change to the count of idx_gc list
* @idx_gc_cnt: change to the count of idx_gc list
*
*
* This function changes LEB properties. This function does not change a LEB
* This function changes LEB properties (@free, @dirty or @flag). However, the
* property (@free, @dirty or @flag) if the value passed is %LPROPS_NC.
* property which has the %LPROPS_NC value is not changed. Returns a pointer to
* the updated LEB properties on success and a negative error code on failure.
*
*
* This function returns a pointer to the updated LEB properties on success
* Note, the LEB properties may have had to be copied (due to COW) and
* and a negative error code on failure. N.B. the LEB properties may have had to
* consequently the pointer returned may not be the same as the pointer
* be copied (due to COW) and consequently the pointer returned may not be the
* passed.
* same as the pointer passed.
*/
*/
const
struct
ubifs_lprops
*
ubifs_change_lp
(
struct
ubifs_info
*
c
,
const
struct
ubifs_lprops
*
ubifs_change_lp
(
struct
ubifs_info
*
c
,
const
struct
ubifs_lprops
*
lp
,
const
struct
ubifs_lprops
*
lp
,
...
...
fs/ubifs/ubifs.h
View file @
d3cf502b
...
@@ -482,24 +482,26 @@ struct ubifs_lpt_lprops {
...
@@ -482,24 +482,26 @@ struct ubifs_lpt_lprops {
* @empty_lebs: number of empty LEBs
* @empty_lebs: number of empty LEBs
* @taken_empty_lebs: number of taken LEBs
* @taken_empty_lebs: number of taken LEBs
* @idx_lebs: number of indexing LEBs
* @idx_lebs: number of indexing LEBs
* @total_free: total free space in bytes
* @total_free: total free space in bytes
(includes all LEBs)
* @total_dirty: total dirty space in bytes
* @total_dirty: total dirty space in bytes
(includes all LEBs)
* @total_used: total used space in bytes (
includes only data
LEBs)
* @total_used: total used space in bytes (
does not include index
LEBs)
* @total_dead: total dead space in bytes (
includes only data
LEBs)
* @total_dead: total dead space in bytes (
does not include index
LEBs)
* @total_dark: total dark space in bytes (
includes only data
LEBs)
* @total_dark: total dark space in bytes (
does not include index
LEBs)
*
*
* N.B. total_dirty and total_used are different to other total_* fields,
* The @taken_empty_lebs field counts the LEBs that are in the transient state
* because they account _all_ LEBs, not just data LEBs.
* of having been "taken" for use but not yet written to. @taken_empty_lebs is
* needed to account correctly for @gc_lnum, otherwise @empty_lebs could be
* used by itself (in which case 'unused_lebs' would be a better name). In the
* case of @gc_lnum, it is "taken" at mount time or whenever a LEB is retained
* by GC, but unlike other empty LEBs that are "taken", it may not be written
* straight away (i.e. before the next commit start or unmount), so either
* @gc_lnum must be specially accounted for, or the current approach followed
* i.e. count it under @taken_empty_lebs.
*
*
* 'taken_empty_lebs' counts the LEBs that are in the transient state of having
* @empty_lebs includes @taken_empty_lebs.
* been 'taken' for use but not yet written to. 'taken_empty_lebs' is needed
*
* to account correctly for gc_lnum, otherwise 'empty_lebs' could be used
* @total_used, @total_dead and @total_dark fields do not account indexing
* by itself (in which case 'unused_lebs' would be a better name). In the case
* LEBs.
* of gc_lnum, it is 'taken' at mount time or whenever a LEB is retained by GC,
* but unlike other empty LEBs that are 'taken', it may not be written straight
* away (i.e. before the next commit start or unmount), so either gc_lnum must
* be specially accounted for, or the current approach followed i.e. count it
* under 'taken_empty_lebs'.
*/
*/
struct
ubifs_lp_stats
{
struct
ubifs_lp_stats
{
int
empty_lebs
;
int
empty_lebs
;
...
...
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