Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
fix build compat with kernel < 4.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpt52 committed Jul 10, 2020
1 parent ed23452 commit 63cac8f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ int exfat_init_dir_entry(struct inode *inode, struct exfat_chain *p_dir,
{
struct super_block *sb = inode->i_sb;
struct exfat_sb_info *sbi = EXFAT_SB(sb);
struct timespec64 ts = current_time(inode);
exfat_timespec_t ts = current_time(inode);
sector_t sector;
struct exfat_dentry *ep;
struct buffer_head *bh;
Expand Down
20 changes: 13 additions & 7 deletions exfat_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@

#define EXFAT_CLUSTERS_UNTRACKED (~0u)

#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18, 0)
typedef struct timespec64 exfat_timespec_t;
#else
typedef struct timespec exfat_timespec_t;
#endif

/*
* exfat error flags
*/
Expand Down Expand Up @@ -190,9 +196,9 @@ struct exfat_dir_entry {
unsigned short attr;
loff_t size;
unsigned int num_subdirs;
struct timespec64 atime;
struct timespec64 mtime;
struct timespec64 crtime;
exfat_timespec_t atime;
exfat_timespec_t mtime;
exfat_timespec_t crtime;
struct exfat_dentry_namebuf namebuf;
};

Expand Down Expand Up @@ -303,7 +309,7 @@ struct exfat_inode_info {
struct rw_semaphore truncate_lock;
struct inode vfs_inode;
/* File creation time */
struct timespec64 i_crtime;
exfat_timespec_t i_crtime;
};

static inline struct exfat_sb_info *EXFAT_SB(struct super_block *sb)
Expand Down Expand Up @@ -530,10 +536,10 @@ void exfat_msg(struct super_block *sb, const char *lv, const char *fmt, ...)
#define exfat_info(sb, fmt, ...) \
exfat_msg(sb, KERN_INFO, fmt, ##__VA_ARGS__)

void exfat_get_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
void exfat_get_entry_time(struct exfat_sb_info *sbi, exfat_timespec_t *ts,
u8 tz, __le16 time, __le16 date, u8 time_cs);
void exfat_truncate_atime(struct timespec64 *ts);
void exfat_set_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
void exfat_truncate_atime(exfat_timespec_t *ts);
void exfat_set_entry_time(struct exfat_sb_info *sbi, exfat_timespec_t *ts,
u8 *tz, __le16 *time, __le16 *date, u8 *time_cs);
u16 exfat_calc_chksum16(void *data, int len, u16 chksum, int type);
u32 exfat_calc_chksum32(void *data, int len, u32 chksum, int type);
Expand Down
2 changes: 1 addition & 1 deletion file.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ int __exfat_truncate(struct inode *inode, loff_t new_size)

/* update the directory entry */
if (!evict) {
struct timespec64 ts;
exfat_timespec_t ts;
struct exfat_dentry *ep, *ep2;
struct exfat_entry_set_cache *es;

Expand Down
8 changes: 4 additions & 4 deletions misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void exfat_msg(struct super_block *sb, const char *level, const char *fmt, ...)
#define SECS_PER_MIN (60)
#define TIMEZONE_SEC(x) ((x) * 15 * SECS_PER_MIN)

static void exfat_adjust_tz(struct timespec64 *ts, u8 tz_off)
static void exfat_adjust_tz(exfat_timespec_t *ts, u8 tz_off)
{
if (tz_off <= 0x3F)
ts->tv_sec -= TIMEZONE_SEC(tz_off);
Expand All @@ -73,7 +73,7 @@ static void exfat_adjust_tz(struct timespec64 *ts, u8 tz_off)
}

/* Convert a EXFAT time/date pair to a UNIX date (seconds since 1 1 70). */
void exfat_get_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
void exfat_get_entry_time(struct exfat_sb_info *sbi, exfat_timespec_t *ts,
u8 tz, __le16 time, __le16 date, u8 time_cs)
{
u16 t = le16_to_cpu(time);
Expand All @@ -99,7 +99,7 @@ void exfat_get_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
}

/* Convert linear UNIX date to a EXFAT time/date pair. */
void exfat_set_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
void exfat_set_entry_time(struct exfat_sb_info *sbi, exfat_timespec_t *ts,
u8 *tz, __le16 *time, __le16 *date, u8 *time_cs)
{
struct tm tm;
Expand Down Expand Up @@ -129,7 +129,7 @@ void exfat_set_entry_time(struct exfat_sb_info *sbi, struct timespec64 *ts,
* (There is no 10msIncrement field for access_time unlike create/modify_time)
* atime also has only a 2-second resolution.
*/
void exfat_truncate_atime(struct timespec64 *ts)
void exfat_truncate_atime(exfat_timespec_t *ts)
{
ts->tv_sec = round_down(ts->tv_sec, 2);
ts->tv_nsec = 0;
Expand Down

0 comments on commit 63cac8f

Please sign in to comment.