| /kernel/linux/linux-6.6/drivers/md/persistent-data/ |
| D | dm-transaction-manager.c | 105 static int is_shadow(struct dm_transaction_manager *tm, dm_block_t b) in is_shadow() argument 111 spin_lock(&tm->lock); in is_shadow() 112 hlist_for_each_entry(si, tm->buckets + bucket, hlist) in is_shadow() 117 spin_unlock(&tm->lock); in is_shadow() 126 static void insert_shadow(struct dm_transaction_manager *tm, dm_block_t b) in insert_shadow() argument 135 spin_lock(&tm->lock); in insert_shadow() 136 hlist_add_head(&si->hlist, tm->buckets + bucket); in insert_shadow() 137 spin_unlock(&tm->lock); in insert_shadow() 141 static void wipe_shadow_table(struct dm_transaction_manager *tm) in wipe_shadow_table() argument 148 spin_lock(&tm->lock); in wipe_shadow_table() [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/powerpc/tm/ |
| D | Makefile | 2 SIGNAL_CONTEXT_CHK_TESTS := tm-signal-context-chk-gpr tm-signal-context-chk-fpu \ 3 tm-signal-context-chk-vmx tm-signal-context-chk-vsx 5 TEST_GEN_PROGS := tm-resched-dscr tm-syscall tm-signal-msr-resv tm-signal-stack \ 6 tm-vmxcopy tm-fork tm-tar tm-tmspr tm-vmx-unavail tm-unavailable tm-trap \ 7 $(SIGNAL_CONTEXT_CHK_TESTS) tm-sigreturn tm-signal-sigreturn-nt \ 8 tm-signal-context-force-tm tm-poison tm-signal-pagefault 19 $(OUTPUT)/tm-syscall: tm-syscall-asm.S 20 $(OUTPUT)/tm-syscall: CFLAGS += $(KHDR_INCLUDES) 21 $(OUTPUT)/tm-tmspr: CFLAGS += -pthread 22 $(OUTPUT)/tm-vmx-unavail: CFLAGS += -pthread -m64 [all …]
|
| D | .gitignore | 2 tm-resched-dscr 3 tm-syscall 4 tm-signal-msr-resv 5 tm-signal-stack 6 tm-vmxcopy 7 tm-fork 8 tm-tar 9 tm-tmspr 10 tm-exec 11 tm-signal-context-chk-fpu [all …]
|
| /kernel/linux/linux-5.10/drivers/md/persistent-data/ |
| D | dm-transaction-manager.c | 103 static int is_shadow(struct dm_transaction_manager *tm, dm_block_t b) in is_shadow() argument 109 spin_lock(&tm->lock); in is_shadow() 110 hlist_for_each_entry(si, tm->buckets + bucket, hlist) in is_shadow() 115 spin_unlock(&tm->lock); in is_shadow() 124 static void insert_shadow(struct dm_transaction_manager *tm, dm_block_t b) in insert_shadow() argument 133 spin_lock(&tm->lock); in insert_shadow() 134 hlist_add_head(&si->hlist, tm->buckets + bucket); in insert_shadow() 135 spin_unlock(&tm->lock); in insert_shadow() 139 static void wipe_shadow_table(struct dm_transaction_manager *tm) in wipe_shadow_table() argument 146 spin_lock(&tm->lock); in wipe_shadow_table() [all …]
|
| /kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/ |
| D | Makefile | 2 SIGNAL_CONTEXT_CHK_TESTS := tm-signal-context-chk-gpr tm-signal-context-chk-fpu \ 3 tm-signal-context-chk-vmx tm-signal-context-chk-vsx 5 TEST_GEN_PROGS := tm-resched-dscr tm-syscall tm-signal-msr-resv tm-signal-stack \ 6 tm-vmxcopy tm-fork tm-tar tm-tmspr tm-vmx-unavail tm-unavailable tm-trap \ 7 $(SIGNAL_CONTEXT_CHK_TESTS) tm-sigreturn tm-signal-sigreturn-nt \ 8 tm-signal-context-force-tm tm-poison tm-signal-pagefault 19 $(OUTPUT)/tm-syscall: tm-syscall-asm.S 20 $(OUTPUT)/tm-syscall: CFLAGS += -I../../../../../usr/include 21 $(OUTPUT)/tm-tmspr: CFLAGS += -pthread 22 $(OUTPUT)/tm-vmx-unavail: CFLAGS += -pthread -m64 [all …]
|
| D | .gitignore | 2 tm-resched-dscr 3 tm-syscall 4 tm-signal-msr-resv 5 tm-signal-stack 6 tm-vmxcopy 7 tm-fork 8 tm-tar 9 tm-tmspr 10 tm-exec 11 tm-signal-context-chk-fpu [all …]
|
| /kernel/linux/linux-5.10/net/ipv4/ |
| D | tcp_metrics.c | 54 static inline struct net *tm_net(const struct tcp_metrics_block *tm) in tm_net() argument 57 return READ_ONCE(tm->tcpm_net); in tm_net() 60 static bool tcp_metric_locked(struct tcp_metrics_block *tm, in tcp_metric_locked() argument 64 return READ_ONCE(tm->tcpm_lock) & (1 << idx); in tcp_metric_locked() 67 static u32 tcp_metric_get(const struct tcp_metrics_block *tm, in tcp_metric_get() argument 71 return READ_ONCE(tm->tcpm_vals[idx]); in tcp_metric_get() 74 static void tcp_metric_set(struct tcp_metrics_block *tm, in tcp_metric_set() argument 79 WRITE_ONCE(tm->tcpm_vals[idx], val); in tcp_metric_set() 98 static void tcpm_suck_dst(struct tcp_metrics_block *tm, in tcpm_suck_dst() argument 105 WRITE_ONCE(tm->tcpm_stamp, jiffies); in tcpm_suck_dst() [all …]
|
| /kernel/linux/linux-6.6/net/ipv4/ |
| D | tcp_metrics.c | 54 static inline struct net *tm_net(const struct tcp_metrics_block *tm) in tm_net() argument 57 return READ_ONCE(tm->tcpm_net); in tm_net() 60 static bool tcp_metric_locked(struct tcp_metrics_block *tm, in tcp_metric_locked() argument 64 return READ_ONCE(tm->tcpm_lock) & (1 << idx); in tcp_metric_locked() 67 static u32 tcp_metric_get(const struct tcp_metrics_block *tm, in tcp_metric_get() argument 71 return READ_ONCE(tm->tcpm_vals[idx]); in tcp_metric_get() 74 static void tcp_metric_set(struct tcp_metrics_block *tm, in tcp_metric_set() argument 79 WRITE_ONCE(tm->tcpm_vals[idx], val); in tcp_metric_set() 98 static void tcpm_suck_dst(struct tcp_metrics_block *tm, in tcpm_suck_dst() argument 105 WRITE_ONCE(tm->tcpm_stamp, jiffies); in tcpm_suck_dst() [all …]
|
| /kernel/linux/linux-6.6/drivers/isdn/mISDN/ |
| D | tei.c | 221 struct teimgr *tm = fi->userdata; in tei_debug() local 234 tm->l2->sapi, tm->l2->tei, &vaf); in tei_debug() 458 struct teimgr *tm = fi->userdata; in tei_id_request() local 460 if (tm->l2->tei != GROUP_TEI) { in tei_id_request() 461 tm->tei_m.printdebug(&tm->tei_m, in tei_id_request() 463 tm->l2->tei); in tei_id_request() 466 tm->ri = random_ri(); in tei_id_request() 468 tm->tei_m.printdebug(&tm->tei_m, in tei_id_request() 469 "assign request ri %d", tm->ri); in tei_id_request() 470 put_tei_msg(tm->mgr, ID_REQUEST, tm->ri, GROUP_TEI); in tei_id_request() [all …]
|
| /kernel/linux/linux-5.10/drivers/isdn/mISDN/ |
| D | tei.c | 221 struct teimgr *tm = fi->userdata; in tei_debug() local 234 tm->l2->sapi, tm->l2->tei, &vaf); in tei_debug() 458 struct teimgr *tm = fi->userdata; in tei_id_request() local 460 if (tm->l2->tei != GROUP_TEI) { in tei_id_request() 461 tm->tei_m.printdebug(&tm->tei_m, in tei_id_request() 463 tm->l2->tei); in tei_id_request() 466 tm->ri = random_ri(); in tei_id_request() 468 tm->tei_m.printdebug(&tm->tei_m, in tei_id_request() 469 "assign request ri %d", tm->ri); in tei_id_request() 470 put_tei_msg(tm->mgr, ID_REQUEST, tm->ri, GROUP_TEI); in tei_id_request() [all …]
|
| /kernel/linux/linux-6.6/fs/btrfs/ |
| D | tree-mod-log.c | 80 struct tree_mod_elem *tm; in btrfs_put_tree_mod_seq() local 116 tm = rb_entry(node, struct tree_mod_elem, node); in btrfs_put_tree_mod_seq() 117 if (tm->seq >= min_seq) in btrfs_put_tree_mod_seq() 120 kfree(tm); in btrfs_put_tree_mod_seq() 134 struct tree_mod_elem *tm) in tree_mod_log_insert() argument 143 tm->seq = btrfs_inc_tree_mod_seq(fs_info); in tree_mod_log_insert() 150 if (cur->logical < tm->logical) in tree_mod_log_insert() 152 else if (cur->logical > tm->logical) in tree_mod_log_insert() 154 else if (cur->seq < tm->seq) in tree_mod_log_insert() 156 else if (cur->seq > tm->seq) in tree_mod_log_insert() [all …]
|
| /kernel/linux/linux-6.6/drivers/rtc/ |
| D | rtc-rzn1.c | 67 static void rzn1_rtc_get_time_snapshot(struct rzn1_rtc *rtc, struct rtc_time *tm) in rzn1_rtc_get_time_snapshot() argument 69 tm->tm_sec = readl(rtc->base + RZN1_RTC_SECC); in rzn1_rtc_get_time_snapshot() 70 tm->tm_min = readl(rtc->base + RZN1_RTC_MINC); in rzn1_rtc_get_time_snapshot() 71 tm->tm_hour = readl(rtc->base + RZN1_RTC_HOURC); in rzn1_rtc_get_time_snapshot() 72 tm->tm_wday = readl(rtc->base + RZN1_RTC_WEEKC); in rzn1_rtc_get_time_snapshot() 73 tm->tm_mday = readl(rtc->base + RZN1_RTC_DAYC); in rzn1_rtc_get_time_snapshot() 74 tm->tm_mon = readl(rtc->base + RZN1_RTC_MONTHC); in rzn1_rtc_get_time_snapshot() 75 tm->tm_year = readl(rtc->base + RZN1_RTC_YEARC); in rzn1_rtc_get_time_snapshot() 78 static unsigned int rzn1_rtc_tm_to_wday(struct rtc_time *tm) in rzn1_rtc_tm_to_wday() argument 84 time = rtc_tm_to_time64(tm); in rzn1_rtc_tm_to_wday() [all …]
|
| D | rtc-m41t94.c | 29 static int m41t94_set_time(struct device *dev, struct rtc_time *tm) in m41t94_set_time() argument 36 "write", tm->tm_sec, tm->tm_min, in m41t94_set_time() 37 tm->tm_hour, tm->tm_mday, in m41t94_set_time() 38 tm->tm_mon, tm->tm_year, tm->tm_wday); in m41t94_set_time() 41 buf[M41T94_REG_SECONDS] = bin2bcd(tm->tm_sec); in m41t94_set_time() 42 buf[M41T94_REG_MINUTES] = bin2bcd(tm->tm_min); in m41t94_set_time() 43 buf[M41T94_REG_HOURS] = bin2bcd(tm->tm_hour); in m41t94_set_time() 44 buf[M41T94_REG_WDAY] = bin2bcd(tm->tm_wday + 1); in m41t94_set_time() 45 buf[M41T94_REG_DAY] = bin2bcd(tm->tm_mday); in m41t94_set_time() 46 buf[M41T94_REG_MONTH] = bin2bcd(tm->tm_mon + 1); in m41t94_set_time() [all …]
|
| D | rtc-wm8350.c | 31 static int wm8350_rtc_readtime(struct device *dev, struct rtc_time *tm) in wm8350_rtc_readtime() argument 52 tm->tm_sec = time1[0] & WM8350_RTC_SECS_MASK; in wm8350_rtc_readtime() 54 tm->tm_min = (time1[0] & WM8350_RTC_MINS_MASK) in wm8350_rtc_readtime() 57 tm->tm_hour = time1[1] & WM8350_RTC_HRS_MASK; in wm8350_rtc_readtime() 59 tm->tm_wday = ((time1[1] >> WM8350_RTC_DAY_SHIFT) in wm8350_rtc_readtime() 62 tm->tm_mon = ((time1[2] & WM8350_RTC_MTH_MASK) in wm8350_rtc_readtime() 65 tm->tm_mday = (time1[2] & WM8350_RTC_DATE_MASK); in wm8350_rtc_readtime() 67 tm->tm_year = ((time1[3] & WM8350_RTC_YHUNDREDS_MASK) in wm8350_rtc_readtime() 69 tm->tm_year += time1[3] & WM8350_RTC_YUNITS_MASK; in wm8350_rtc_readtime() 71 tm->tm_yday = rtc_year_days(tm->tm_mday, tm->tm_mon, in wm8350_rtc_readtime() [all …]
|
| D | rtc-moxart.c | 142 static int moxart_rtc_set_time(struct device *dev, struct rtc_time *tm) in moxart_rtc_set_time() argument 150 (((tm->tm_year - 100) / 10) << 4) | in moxart_rtc_set_time() 151 ((tm->tm_year - 100) % 10)); in moxart_rtc_set_time() 154 (((tm->tm_mon + 1) / 10) << 4) | in moxart_rtc_set_time() 155 ((tm->tm_mon + 1) % 10)); in moxart_rtc_set_time() 158 ((tm->tm_mday / 10) << 4) | in moxart_rtc_set_time() 159 (tm->tm_mday % 10)); in moxart_rtc_set_time() 162 ((tm->tm_hour / 10) << 4) | in moxart_rtc_set_time() 163 (tm->tm_hour % 10)); in moxart_rtc_set_time() 166 ((tm->tm_min / 10) << 4) | in moxart_rtc_set_time() [all …]
|
| D | lib.c | 50 * @tm: Pointer to the struct rtc_time. 52 void rtc_time64_to_tm(time64_t time, struct rtc_time *tm) in rtc_time64_to_tm() argument 77 tm->tm_wday = (days + 4) % 7; in rtc_time64_to_tm() 79 if (tm->tm_wday < 0) in rtc_time64_to_tm() 80 tm->tm_wday += 7; in rtc_time64_to_tm() 144 tm->tm_year = (int) (year - 1900); in rtc_time64_to_tm() 145 tm->tm_mon = (int) month; in rtc_time64_to_tm() 146 tm->tm_mday = (int) day; in rtc_time64_to_tm() 147 tm->tm_yday = (int) day_of_year + 1; in rtc_time64_to_tm() 149 tm->tm_hour = secs / 3600; in rtc_time64_to_tm() [all …]
|
| /kernel/linux/linux-5.10/drivers/rtc/ |
| D | lib.c | 49 void rtc_time64_to_tm(time64_t time, struct rtc_time *tm) in rtc_time64_to_tm() argument 58 tm->tm_wday = (days + 4) % 7; in rtc_time64_to_tm() 68 tm->tm_year = year - 1900; in rtc_time64_to_tm() 69 tm->tm_yday = days + 1; in rtc_time64_to_tm() 79 tm->tm_mon = month; in rtc_time64_to_tm() 80 tm->tm_mday = days + 1; in rtc_time64_to_tm() 82 tm->tm_hour = secs / 3600; in rtc_time64_to_tm() 83 secs -= tm->tm_hour * 3600; in rtc_time64_to_tm() 84 tm->tm_min = secs / 60; in rtc_time64_to_tm() 85 tm->tm_sec = secs - tm->tm_min * 60; in rtc_time64_to_tm() [all …]
|
| D | rtc-m41t94.c | 29 static int m41t94_set_time(struct device *dev, struct rtc_time *tm) in m41t94_set_time() argument 36 "write", tm->tm_sec, tm->tm_min, in m41t94_set_time() 37 tm->tm_hour, tm->tm_mday, in m41t94_set_time() 38 tm->tm_mon, tm->tm_year, tm->tm_wday); in m41t94_set_time() 41 buf[M41T94_REG_SECONDS] = bin2bcd(tm->tm_sec); in m41t94_set_time() 42 buf[M41T94_REG_MINUTES] = bin2bcd(tm->tm_min); in m41t94_set_time() 43 buf[M41T94_REG_HOURS] = bin2bcd(tm->tm_hour); in m41t94_set_time() 44 buf[M41T94_REG_WDAY] = bin2bcd(tm->tm_wday + 1); in m41t94_set_time() 45 buf[M41T94_REG_DAY] = bin2bcd(tm->tm_mday); in m41t94_set_time() 46 buf[M41T94_REG_MONTH] = bin2bcd(tm->tm_mon + 1); in m41t94_set_time() [all …]
|
| D | rtc-wm8350.c | 31 static int wm8350_rtc_readtime(struct device *dev, struct rtc_time *tm) in wm8350_rtc_readtime() argument 52 tm->tm_sec = time1[0] & WM8350_RTC_SECS_MASK; in wm8350_rtc_readtime() 54 tm->tm_min = (time1[0] & WM8350_RTC_MINS_MASK) in wm8350_rtc_readtime() 57 tm->tm_hour = time1[1] & WM8350_RTC_HRS_MASK; in wm8350_rtc_readtime() 59 tm->tm_wday = ((time1[1] >> WM8350_RTC_DAY_SHIFT) in wm8350_rtc_readtime() 62 tm->tm_mon = ((time1[2] & WM8350_RTC_MTH_MASK) in wm8350_rtc_readtime() 65 tm->tm_mday = (time1[2] & WM8350_RTC_DATE_MASK); in wm8350_rtc_readtime() 67 tm->tm_year = ((time1[3] & WM8350_RTC_YHUNDREDS_MASK) in wm8350_rtc_readtime() 69 tm->tm_year += time1[3] & WM8350_RTC_YUNITS_MASK; in wm8350_rtc_readtime() 71 tm->tm_yday = rtc_year_days(tm->tm_mday, tm->tm_mon, in wm8350_rtc_readtime() [all …]
|
| D | rtc-moxart.c | 139 static int moxart_rtc_set_time(struct device *dev, struct rtc_time *tm) in moxart_rtc_set_time() argument 147 (((tm->tm_year - 100) / 10) << 4) | in moxart_rtc_set_time() 148 ((tm->tm_year - 100) % 10)); in moxart_rtc_set_time() 151 (((tm->tm_mon + 1) / 10) << 4) | in moxart_rtc_set_time() 152 ((tm->tm_mon + 1) % 10)); in moxart_rtc_set_time() 155 ((tm->tm_mday / 10) << 4) | in moxart_rtc_set_time() 156 (tm->tm_mday % 10)); in moxart_rtc_set_time() 159 ((tm->tm_hour / 10) << 4) | in moxart_rtc_set_time() 160 (tm->tm_hour % 10)); in moxart_rtc_set_time() 163 ((tm->tm_min / 10) << 4) | in moxart_rtc_set_time() [all …]
|
| /kernel/liteos_m/testsuites/unittest/xts/io/ |
| D | xts_io_other_test.c | 52 struct tm tm; variable 53 memset_s(&tm, sizeof(struct tm), 0, sizeof(struct tm)); 54 char *ret = strptime("2020-10-29 21:24:00abc", "%Y-%m-%d %H:%M:%S", &tm); 56 …ICUNIT_ASSERT_EQUAL(tm.tm_year, 120, tm.tm_year); /* 120 common data for test, no special meaning … 57 ICUNIT_ASSERT_EQUAL(tm.tm_mon, 9, tm.tm_mon); /* 9 common data for test, no special meaning */ 58 … ICUNIT_ASSERT_EQUAL(tm.tm_mday, 29, tm.tm_mday); /* 29 common data for test, no special meaning */ 59 … ICUNIT_ASSERT_EQUAL(tm.tm_hour, 21, tm.tm_hour); /* 21 common data for test, no special meaning */ 60 ICUNIT_ASSERT_EQUAL(tm.tm_min, 24, tm.tm_min); /* 24 common data for test, no special meaning */ 62 …et = strptime("14 Oct October 20 09:24:00 Sat Saturday 363", "%d %b %B %y %I:%M:%S %a %A %j", &tm); 64 …ICUNIT_ASSERT_EQUAL(tm.tm_year, 120, tm.tm_year); /* 120 common data for test, no special meaning … [all …]
|
| /kernel/linux/linux-5.10/drivers/net/fddi/skfp/ |
| D | smttimer.c | 38 struct smt_timer *tm ; in smt_timer_stop() local 47 for (prev = &smc->t.st_queue ; (tm = *prev) ; prev = &tm->tm_next ) { in smt_timer_stop() 48 if (tm == timer) { in smt_timer_stop() 49 *prev = tm->tm_next ; in smt_timer_stop() 50 if (tm->tm_next) { in smt_timer_stop() 51 tm->tm_next->tm_delta += tm->tm_delta ; in smt_timer_stop() 62 struct smt_timer *tm ; in smt_timer_start() local 88 for (prev = &smc->t.st_queue ; (tm = *prev) ; prev = &tm->tm_next ) { in smt_timer_start() 89 if (delta + tm->tm_delta > time) { in smt_timer_start() 92 delta += tm->tm_delta ; in smt_timer_start() [all …]
|
| /kernel/linux/linux-6.6/drivers/net/fddi/skfp/ |
| D | smttimer.c | 34 struct smt_timer *tm ; in smt_timer_stop() local 43 for (prev = &smc->t.st_queue ; (tm = *prev) ; prev = &tm->tm_next ) { in smt_timer_stop() 44 if (tm == timer) { in smt_timer_stop() 45 *prev = tm->tm_next ; in smt_timer_stop() 46 if (tm->tm_next) { in smt_timer_stop() 47 tm->tm_next->tm_delta += tm->tm_delta ; in smt_timer_stop() 58 struct smt_timer *tm ; in smt_timer_start() local 84 for (prev = &smc->t.st_queue ; (tm = *prev) ; prev = &tm->tm_next ) { in smt_timer_start() 85 if (delta + tm->tm_delta > time) { in smt_timer_start() 88 delta += tm->tm_delta ; in smt_timer_start() [all …]
|
| /kernel/linux/linux-5.10/arch/powerpc/platforms/maple/ |
| D | time.c | 51 void maple_get_rtc_time(struct rtc_time *tm) in maple_get_rtc_time() argument 54 tm->tm_sec = maple_clock_read(RTC_SECONDS); in maple_get_rtc_time() 55 tm->tm_min = maple_clock_read(RTC_MINUTES); in maple_get_rtc_time() 56 tm->tm_hour = maple_clock_read(RTC_HOURS); in maple_get_rtc_time() 57 tm->tm_mday = maple_clock_read(RTC_DAY_OF_MONTH); in maple_get_rtc_time() 58 tm->tm_mon = maple_clock_read(RTC_MONTH); in maple_get_rtc_time() 59 tm->tm_year = maple_clock_read(RTC_YEAR); in maple_get_rtc_time() 60 } while (tm->tm_sec != maple_clock_read(RTC_SECONDS)); in maple_get_rtc_time() 64 tm->tm_sec = bcd2bin(tm->tm_sec); in maple_get_rtc_time() 65 tm->tm_min = bcd2bin(tm->tm_min); in maple_get_rtc_time() [all …]
|
| /kernel/linux/linux-6.6/arch/powerpc/platforms/maple/ |
| D | time.c | 51 void maple_get_rtc_time(struct rtc_time *tm) in maple_get_rtc_time() argument 54 tm->tm_sec = maple_clock_read(RTC_SECONDS); in maple_get_rtc_time() 55 tm->tm_min = maple_clock_read(RTC_MINUTES); in maple_get_rtc_time() 56 tm->tm_hour = maple_clock_read(RTC_HOURS); in maple_get_rtc_time() 57 tm->tm_mday = maple_clock_read(RTC_DAY_OF_MONTH); in maple_get_rtc_time() 58 tm->tm_mon = maple_clock_read(RTC_MONTH); in maple_get_rtc_time() 59 tm->tm_year = maple_clock_read(RTC_YEAR); in maple_get_rtc_time() 60 } while (tm->tm_sec != maple_clock_read(RTC_SECONDS)); in maple_get_rtc_time() 64 tm->tm_sec = bcd2bin(tm->tm_sec); in maple_get_rtc_time() 65 tm->tm_min = bcd2bin(tm->tm_min); in maple_get_rtc_time() [all …]
|