Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
63409451
Commit
63409451
authored
Sep 19, 2012
by
Ben Straub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ODB pack: snapshot last_found to avoid race
Also removed unnecessary refresh call and fixed some indentation.
parent
78216495
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
16 deletions
+17
-16
src/odb_pack.c
+17
-16
No files found.
src/odb_pack.c
View file @
63409451
...
...
@@ -259,12 +259,13 @@ static int packfile_refresh_all(struct pack_backend *backend)
return
0
;
}
static
int
pack_entry_find_inner
(
struct
git_pack_entry
*
e
,
struct
pack_backend
*
backend
,
const
git_oid
*
oid
)
static
int
pack_entry_find_inner
(
struct
git_pack_entry
*
e
,
struct
pack_backend
*
backend
,
const
git_oid
*
oid
,
struct
git_pack_file
*
last_found
)
{
unsigned
int
i
;
struct
git_pack_file
*
last_found
=
backend
->
last_found
;
if
(
last_found
&&
git_pack_entry_find
(
e
,
last_found
,
oid
,
GIT_OID_HEXSZ
)
==
0
)
...
...
@@ -289,33 +290,32 @@ static int pack_entry_find_inner(struct git_pack_entry *e,
static
int
pack_entry_find
(
struct
git_pack_entry
*
e
,
struct
pack_backend
*
backend
,
const
git_oid
*
oid
)
{
int
error
;
struct
git_pack_file
*
last_found
=
backend
->
last_found
;
if
(
backend
->
last_found
&&
git_pack_entry_find
(
e
,
backend
->
last_found
,
oid
,
GIT_OID_HEXSZ
)
==
0
)
return
0
;
if
(
!
pack_entry_find_inner
(
e
,
backend
,
oid
))
if
(
!
pack_entry_find_inner
(
e
,
backend
,
oid
,
last_found
))
return
0
;
if
((
error
=
packfile_refresh_all
(
backend
))
<
0
)
return
error
;
if
(
!
pack_entry_find_inner
(
e
,
backend
,
oid
))
if
(
!
pack_entry_find_inner
(
e
,
backend
,
oid
,
last_found
))
return
0
;
return
git_odb__error_notfound
(
"failed to find pack entry"
,
oid
);
}
static
unsigned
pack_entry_find_prefix_inner
(
struct
git_pack_entry
*
e
,
struct
pack_backend
*
backend
,
const
git_oid
*
short_oid
,
size_t
len
)
static
unsigned
pack_entry_find_prefix_inner
(
struct
git_pack_entry
*
e
,
struct
pack_backend
*
backend
,
const
git_oid
*
short_oid
,
size_t
len
,
struct
git_pack_file
*
last_found
)
{
int
error
;
unsigned
int
i
;
unsigned
found
=
0
;
struct
git_pack_file
*
last_found
=
backend
->
last_found
;
if
((
error
=
packfile_refresh_all
(
backend
))
<
0
)
return
error
;
if
(
last_found
)
{
error
=
git_pack_entry_find
(
e
,
last_found
,
short_oid
,
len
);
...
...
@@ -353,12 +353,13 @@ static int pack_entry_find_prefix(
{
unsigned
found
=
0
;
int
error
;
struct
git_pack_file
*
last_found
=
backend
->
last_found
;
if
((
found
=
pack_entry_find_prefix_inner
(
e
,
backend
,
short_oid
,
len
))
>
0
)
if
((
found
=
pack_entry_find_prefix_inner
(
e
,
backend
,
short_oid
,
len
,
last_found
))
>
0
)
goto
cleanup
;
if
((
error
=
packfile_refresh_all
(
backend
))
<
0
)
return
error
;
found
=
pack_entry_find_prefix_inner
(
e
,
backend
,
short_oid
,
len
);
found
=
pack_entry_find_prefix_inner
(
e
,
backend
,
short_oid
,
len
,
last_found
);
cleanup
:
if
(
!
found
)
...
...
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