Skip to content
Permalink
Browse files
Merge remote-tracking branch 'origin/10.1' into 10.2
# Conflicts:
#	storage/innobase/include/os0file.h
  • Loading branch information
vaintroub committed Nov 24, 2017
2 parents f1cc6e3 + 40756c9 commit 9cefffd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
@@ -1197,11 +1197,12 @@ to original un-instrumented file I/O APIs */
# define os_file_read_no_error_handling(type, file, buf, offset, n, o) \
os_file_read_no_error_handling_func(type, file, buf, offset, n, o)
# define os_file_read_no_error_handling_int_fd(type, file, buf, offset, n) \
os_file_read_no_error_handling_func(type, file, buf, offset, n, NULL)
os_file_read_no_error_handling_func(type, OS_FILE_FROM_FD(file), buf, offset, n, NULL)

# define os_file_write(type, name, file, buf, offset, n) \
os_file_write_func(type, name, file, buf, offset, n)
# define os_file_write_int_fd os_file_write_func
# define os_file_write_int_fd(type, name, file, buf, offset, n) \
os_file_write_func(type, name, OS_FILE_FROM_FD(file), buf, offset, n)

# define os_file_flush(file) os_file_flush_func(file)

@@ -469,10 +469,10 @@ to original un-instrumented file I/O APIs */
os_file_read_no_error_handling_func(file, buf, offset, n)
# define os_file_read_no_error_handling_int_fd( \
file, buf, offset, n) \
os_file_read_no_error_handling_func(file, buf, offset, n)
os_file_read_no_error_handling_func(OS_FILE_FROM_FD(file), buf, offset, n)

# define os_file_write_int_fd(name, file, buf, offset, n) \
os_file_write_func(name, file, buf, offset, n)
os_file_write_func(name, OS_FILE_FROM_FD(file), buf, offset, n)
# define os_file_write(name, file, buf, offset, n) \
os_file_write_func(name, file, buf, offset, n)

0 comments on commit 9cefffd

Please sign in to comment.