Home
last modified time | relevance | path

Searched refs:nsl (Results 1 – 3 of 3) sorted by relevance

/Linux-v6.1/drivers/net/dsa/hirschmann/
Dhellcreek_ptp.c31 u16 nsl, nsh; in hellcreek_ptp_clock_read() local
47 nsl = hellcreek_ptp_read(hellcreek, PR_SS_SYNC_DATA_C); in hellcreek_ptp_clock_read()
49 return (u64)nsl | ((u64)nsh << 16); in hellcreek_ptp_clock_read()
102 u16 secl, nsh, nsl; in hellcreek_ptp_settime() local
106 nsl = ts->tv_nsec & 0xffff; in hellcreek_ptp_settime()
119 hellcreek_ptp_write(hellcreek, nsl, PR_CLOCK_WRITE_C); in hellcreek_ptp_settime()
Dhellcreek_hwtstamp.c202 u16 nsl, nsh; in hellcreek_ptp_hwtstamp_read() local
208 nsl = hellcreek_ptp_read(hellcreek, ts_reg); in hellcreek_ptp_hwtstamp_read()
210 return (u64)nsl | ((u64)nsh << 16); in hellcreek_ptp_hwtstamp_read()
/Linux-v6.1/net/ceph/
Dosdmap.c2409 int nsl = oloc->pool_ns->len; in __ceph_object_locator_to_pg() local
2410 size_t total = nsl + 1 + oid->name_len; in __ceph_object_locator_to_pg()
2414 memcpy(buf, oloc->pool_ns->str, nsl); in __ceph_object_locator_to_pg()
2415 buf[nsl] = '\037'; in __ceph_object_locator_to_pg()
2416 memcpy(buf + nsl + 1, oid->name, oid->name_len); in __ceph_object_locator_to_pg()
2422 oid->name, nsl, oloc->pool_ns->str, in __ceph_object_locator_to_pg()