Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
mariadb
Commits
a5d8f243
Commit
a5d8f243
authored
Jun 01, 2004
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: os0file.c:
Do not lock raw devices or files opened for read only
parent
59e44ff8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
16 deletions
+10
-16
innobase/os/os0file.c
innobase/os/os0file.c
+10
-16
No files found.
innobase/os/os0file.c
View file @
a5d8f243
...
...
@@ -387,22 +387,19 @@ os_file_lock(
/*=========*/
/* out: 0 on success */
int
fd
,
/* in: file descriptor */
const
char
*
name
,
/* in: file name */
uint
lock_type
)
/* in: lock_type */
const
char
*
name
)
/* in: file name */
{
struct
flock
lk
;
lk
.
l_type
=
lock_type
;
lk
.
l_type
=
F_WRLCK
;
lk
.
l_whence
=
SEEK_SET
;
lk
.
l_start
=
lk
.
l_len
=
0
;
if
(
fcntl
(
fd
,
F_SETLK
,
&
lk
)
==
-
1
)
{
fprintf
(
stderr
,
"InnoDB: Unable to lock %s with lock %d, error: %d"
,
name
,
lock_type
,
errno
);
perror
(
": fcntl"
);
"InnoDB: Unable to lock %s, error: %d"
,
name
,
errno
);
close
(
fd
);
return
(
-
1
);
}
return
0
;
return
(
0
)
;
}
#endif
/* USE_FILE_LOCK */
...
...
@@ -869,7 +866,8 @@ try_again:
goto
try_again
;
}
#ifdef USE_FILE_LOCK
}
else
if
(
os_file_lock
(
file
,
name
,
F_WRLCK
))
{
}
else
if
(
access_type
==
OS_FILE_READ_WRITE
&&
os_file_lock
(
file
,
name
))
{
*
success
=
FALSE
;
file
=
-
1
;
#endif
...
...
@@ -980,7 +978,8 @@ os_file_create_simple_no_error_handling(
if
(
file
==
-
1
)
{
*
success
=
FALSE
;
#ifdef USE_FILE_LOCK
}
else
if
(
os_file_lock
(
file
,
name
,
F_WRLCK
))
{
}
else
if
(
access_type
==
OS_FILE_READ_WRITE
&&
os_file_lock
(
file
,
name
))
{
*
success
=
FALSE
;
file
=
-
1
;
#endif
...
...
@@ -1194,7 +1193,8 @@ try_again:
goto
try_again
;
}
#ifdef USE_FILE_LOCK
}
else
if
(
os_file_lock
(
file
,
name
,
F_WRLCK
))
{
}
else
if
(
create_mode
!=
OS_FILE_OPEN_RAW
&&
os_file_lock
(
file
,
name
))
{
*
success
=
FALSE
;
file
=
-
1
;
#endif
...
...
@@ -1395,9 +1395,6 @@ os_file_close(
#else
int
ret
;
#ifdef USE_FILE_LOCK
(
void
)
os_file_lock
(
file
,
"unknown"
,
F_UNLCK
);
#endif
ret
=
close
(
file
);
if
(
ret
==
-
1
)
{
...
...
@@ -1434,9 +1431,6 @@ os_file_close_no_error_handling(
#else
int
ret
;
#ifdef USE_FILE_LOCK
(
void
)
os_file_lock
(
file
,
"unknown"
,
F_UNLCK
);
#endif
ret
=
close
(
file
);
if
(
ret
==
-
1
)
{
...
...
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