| /src/sys/arch/cobalt/stand/boot/ |
| wd.c | 1 /* $NetBSD: wd.c,v 1.18 2019/01/08 19:41:09 jdolecek Exp $ */ 44 static int wd_get_params(struct wd_softc *wd); 45 static int wdgetdisklabel(struct wd_softc *wd); 46 static void wdgetdefaultlabel(struct wd_softc *wd, struct disklabel *lp); 52 wd_get_params(struct wd_softc *wd) 58 if ((error = wdc_exec_identify(wd, buf)) != 0) 61 wd->sc_params = *params; 64 if ((wd->sc_params.atap_cmd2_en & ATA_CMD2_LBA48) != 0) 65 wd->sc_flags |= WDF_LBA48; 68 if ((wd->sc_params.atap_capabilities1 & WDC_CAP_LBA) != 0 224 struct wd_softc *wd; local 273 struct wd_softc *wd; local [all...] |
| wdc.c | 244 printf("wd%d: error %x\n", chp->compatchan, 256 wdccommandext(struct wd_softc *wd, struct wdc_command *wd_c) 258 struct wdc_channel *chp = &wd->sc_channel; 290 printf("wd%d: error %x\n", chp->compatchan, 302 wdc_exec_identify(struct wd_softc *wd, void *data) 309 wd_c.drive = wd->sc_unit; 314 if ((error = wdccommand(wd, &wd_c)) != 0) 317 return wdc_read_block(wd, &wd_c); 324 wdc_exec_read(struct wd_softc *wd, uint8_t cmd, daddr_t blkno, void *data) 337 wd_c.drive = wd->sc_unit [all...] |
| /src/sys/arch/mmeye/stand/boot/ |
| wd.c | 1 /* $NetBSD: wd.c,v 1.5 2019/01/08 19:36:57 jdolecek Exp $ */ 42 static int wd_get_params(struct wd_softc *wd); 43 static int wdgetdisklabel(struct wd_softc *wd); 44 static void wdgetdefaultlabel(struct wd_softc *wd, struct disklabel *lp); 50 wd_get_params(struct wd_softc *wd) 55 if ((error = wdc_exec_identify(wd, buf)) != 0) 58 memcpy(&wd->sc_params, buf, sizeof wd->sc_params); 61 if ((wd->sc_params.atap_cmd2_en & ATA_CMD2_LBA48) != 0) 62 wd->sc_flags |= WDF_LBA48 200 struct wd_softc *wd; local 249 struct wd_softc *wd; local [all...] |
| wdc.c | 281 printf("wd%d: error %x\n", chp->compatchan, 293 wdccommandext(struct wd_softc *wd, struct wdc_command *wd_c) 295 struct wdc_channel *chp = &wd->sc_channel; 327 printf("wd%d: error %x\n", chp->compatchan, 339 wdc_exec_identify(struct wd_softc *wd, void *data) 351 if ((error = wdccommand(wd, &wd_c)) != 0) 354 return wdc_read_block(wd, &wd_c); 361 wdc_exec_read(struct wd_softc *wd, uint8_t cmd, daddr_t blkno, void *data) 375 wd_c.bcount = wd->sc_label.d_secsize; 377 if ((wd->sc_flags & WDF_LBA48) != 0 && blkno > wd->sc_capacity28 [all...] |
| /src/sys/arch/bebox/stand/boot/ |
| wd.c | 1 /* $NetBSD: wd.c,v 1.4 2019/01/08 19:41:09 jdolecek Exp $ */ 50 static int wd_get_params(struct wd_softc *wd); 51 static int wdgetdisklabel(struct wd_softc *wd); 52 static void wdgetdefaultlabel(struct wd_softc *wd, struct disklabel *lp); 62 wd_get_params(struct wd_softc *wd) 67 if ((error = wdc_exec_identify(wd, buf)) != 0) 70 wd->sc_params = *(struct ataparams *)buf; 73 if ((wd->sc_params.atap_cmd2_en & ATA_CMD2_LBA48) != 0) 74 wd->sc_flags |= WDF_LBA48; 77 if ((wd->sc_params.atap_capabilities1 & WDC_CAP_LBA) != 0 236 struct wd_softc *wd; local 288 struct wd_softc *wd; local [all...] |
| wdc.c | 402 wdc_exec_identify(struct wd_softc *wd, void *data) 406 if (wd->sc_ctlr != 0) 412 return _wdc_exec_identify(chp, wd->sc_unit, data); 419 wdc_exec_read(struct wd_softc *wd, uint8_t cmd, daddr_t blkno, void *data) 426 if (wd->sc_ctlr != 0) 439 wd_c.drive = wd->sc_unit; 440 wd_c.bcount = wd->sc_label.d_secsize; 442 if ((wd->sc_flags & WDF_LBA48) != 0 && blkno > wd->sc_capacity28) 444 else if ((wd->sc_flags & WDF_LBA) != 0 [all...] |
| /src/sys/dev/ata/ |
| wd.c | 1 /* $NetBSD: wd.c,v 1.474 2025/04/13 14:00:59 jakllsch Exp $ */ 57 __KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.474 2025/04/13 14:00:59 jakllsch Exp $"); 132 CFATTACH_DECL3_NEW(wd, sizeof(struct wd_softc), 309 struct wd_softc *wd = device_private(self); local 310 struct dk_softc *dksc = &wd->sc_dksc; 321 mutex_init(&wd->sc_lock, MUTEX_DEFAULT, IPL_BIO); 323 SLIST_INIT(&wd->sc_bslist); 324 cv_init(&wd->sc_bslist_cv, "wdbadsect"); 326 wd->atabus = adev->adev_bustype; 327 wd->inflight = 0 547 struct wd_softc *wd = device_private(self); local 632 struct wd_softc *wd = local 807 struct wd_softc *wd = device_private(dev); local 879 struct wd_softc *wd = device_private(self); local 894 struct wd_softc *wd = device_private(self); local 1056 struct wd_softc *wd = v; local 1073 struct wd_softc *wd = v; local 1090 const struct wd_softc * const wd = local 1144 struct wd_softc *wd; local 1183 struct wd_softc *wd = device_private(self); local 1219 struct wd_softc *wd = device_private(self); local 1235 struct wd_softc *wd; local 1289 struct wd_softc *wd = local 1506 struct wd_softc *wd = device_private(dev); local 1547 struct wd_softc *wd; local 1571 struct wd_softc *wd; local 1595 struct wd_softc *wd; local 1616 struct wd_softc *wd = device_private(dev); local 1992 struct wd_softc *wd = device_private(dev); local 2282 struct wd_softc *wd; local [all...] |
| wdvar.h | 95 #define WD_USE_NCQ(wd) \ 96 ((wd)->drv_ncq && ((wd)->drvp->drive_flags & ATA_DRIVE_NCQ)) 98 #define WD_USE_NCQ_PRIO(wd) \ 99 ((wd)->drv_ncq_prio && ((wd)->drvp->drive_flags & ATA_DRIVE_NCQ_PRIO))
|
| ata_raidreg.h | 38 #define PR_LBA(wd) \ 39 ((((wd)->sc_capacity / \ 40 ((wd)->sc_params.atap_heads * (wd)->sc_params.atap_sectors)) * \ 41 (wd)->sc_params.atap_heads * (wd)->sc_params.atap_sectors) - \ 42 (wd)->sc_params.atap_sectors) 117 #define ADP_LBA(wd) \ 118 ((wd)->sc_capacity - 17) 175 #define VIA_LBA(wd) ((wd)->sc_capacity - 1 [all...] |
| /src/external/mit/libuv/dist/include/uv/ |
| linux.h | 32 int wd; \
|
| /src/external/lgpl3/mpfr/dist/src/ |
| dump.c | 70 mp_limb_t wd, t; local 72 wd = mx[n]; 75 if (! MPFR_LIMB_MSB (wd)) 81 putc ((wd & t) == 0 ? '0' : '1', stream); 85 if (t != 0 && (wd & (t - 1)) != 0)
|
| /src/external/mit/libuv/dist/src/unix/ |
| linux-inotify.c | 41 int wd; member in struct:watcher_list 52 if (a->wd < b->wd) return -1; 53 if (a->wd > b->wd) return 1; 151 static struct watcher_list* find_watcher(uv_loop_t* loop, int wd) { 153 w.wd = wd; 162 inotify_rm_watch(loop->inotify_fd, w->wd); 203 w = find_watcher(loop, e->wd); 257 int wd; local [all...] |
| /src/sys/dev/mca/ |
| ed_mca.c | 294 struct ed_softc *wd; local 298 wd = device_lookup_private(&ed_cd, DISKUNIT(dev)); 299 if (wd == NULL || (wd->sc_flags & EDF_INIT) == 0) 304 mutex_enter(&wd->sc_dk.dk_openlock); 310 if (wd->sc_dk.dk_nwedges != 0 && part != RAW_PART) { 315 if (wd->sc_dk.dk_openmask != 0) { 320 if ((wd->sc_flags & WDF_LOADED) == 0) { 325 if ((wd->sc_flags & WDF_LOADED) == 0) { 328 wd->sc_flags |= WDF_LOADED 369 struct ed_softc *wd = device_lookup_private(&ed_cd, DISKUNIT(dev)); local 579 struct ed_softc *wd; local [all...] |
| /src/tests/compat/linux/ |
| h_inotify_watch_change.c | 44 int fd, wd, targetfd; local 51 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 63 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 75 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
|
| h_inotify_directory.c | 65 int fd, wd, targetfd; local 72 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 90 REQUIRE(cur_ie->wd == wd);
|
| h_inotify_single_file.c | 49 int fd, wd, targetfd, buf; local 55 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 72 REQUIRE(events[i].wd == wd && events[i].cookie == 0
|
| /src/external/bsd/tmux/dist/ |
| osdep-darwin.c | 75 static char wd[PATH_MAX]; local 86 strlcpy(wd, pathinfo.pvi_cdir.vip_path, sizeof wd); 87 return (wd);
|
| osdep-freebsd.c | 139 static char wd[PATH_MAX]; local 152 strlcpy(wd, info[i].kf_path, sizeof wd); 154 return (wd);
|
| /src/external/bsd/am-utils/dist/amq/ |
| pawd.c | 226 char *wd = getcwd(path, MAXPATHLEN); local 228 char *wd = getwd(path); 231 if (wd == NULL) { 234 xstrlcpy(path, transform_dir(wd), l); 242 char tmp_buf[MAXPATHLEN], *wd; local 245 wd = getawd(tmp_buf, sizeof(tmp_buf)); 246 if (wd == NULL) { 250 fprintf(stdout, "%s\n", wd); 254 wd = transform_dir(*++argv); 255 fprintf(stdout, "%s\n", wd); [all...] |
| /src/sys/compat/linux/common/ |
| linux_inotify.c | 422 int wd, i, error = 0; local 465 /* Check to see if we already have a descriptor to wd's file. */ 466 wd = -1; 471 DPRINTF(("%s: wd=%d was closed externally\n", 477 DPRINTF(("%s: wd=%d was replaced " 482 wd = i; 487 if (wd != -1) 492 if (wd == -1) { 494 * If we do not have a descriptor to wd's file, we 508 wd = *retval 671 const int wd = SCARG(uap, wd); local [all...] |
| /src/usr.bin/btkey/ |
| btkey.c | 57 bool cf, cd, lf, ld, rf, rd, wf, wd, nk; local 62 cf = cd = lf = ld = rf = rd = wf = wd = nk = false; 125 wd = true; 139 if ((lf || ld) && (rf || rd || wf || wd || cf || cd || nk)) 142 if (((rf && rd) || (rf && nk) || (rd && nk)) && (wf || wd)) 182 if (wf || wd || cf || cd) 192 if (wd) {
|
| /src/external/bsd/ntp/dist/tests/libntp/ |
| calendar.c | 1065 unsigned int yi, yo, m, d, wd; local 1071 wd = ntpcal_edate_to_eradays(yi-1, m-1, d-1) % 7 + 1; 1072 yo = ntpcal_expand_century((yi%100), m, d, wd); 1073 snprintf(mbuf, sizeof(mbuf), "failed, di=%04u-%02u-%02u, wd=%u", 1074 yi, m, d, wd); 1081 wd = ntpcal_edate_to_eradays(yi-1, m-1, d-1) % 7 + 1; 1082 yo = ntpcal_expand_century((yi%100), m, d, wd); 1083 snprintf(mbuf, sizeof(mbuf), "failed, di=%04u-%02u-%02u, wd=%u", 1084 yi, m, d, wd); 1092 wd = ntpcal_edate_to_eradays(yi-1, m-1, d-1) % 7 + 1 1150 unsigned int yi, yo, m, d, wd; local 1197 unsigned int y, n, wd; local [all...] |
| /src/usr.sbin/rwhod/ |
| rwhod.c | 266 struct whod wd; local 270 cc = recvfrom(s, (char *)&wd, sizeof(struct whod), 0, 288 if (wd.wd_vers != WHODVERSION) 290 if (wd.wd_type != WHODTYPE_STATUS) 296 wd.wd_hostname[sizeof(wd.wd_hostname)-1] = 0; 297 if (!verify(wd.wd_hostname)) { 302 (void)snprintf(path, sizeof(path), "whod.%s", wd.wd_hostname); 318 wd.wd_sendtime = ntohl(wd.wd_sendtime) [all...] |
| /src/usr.bin/rwho/ |
| rwho.c | 82 struct whod wd; local 137 cc = read(f, &wd, sizeof (wd)); 143 if (DOWN(wd, now)) { 148 we = wd.wd_we; 166 (void)strcpy(mp->myhost, wd.wd_hostname);
|
| /src/usr.bin/ruptime/ |
| ruptime.c | 83 struct whod *wd; local 147 for (wd = (struct whod *)buf, i = 0; i < 2; ++i) 148 if (wd->wd_loadav[i] > maxloadav) 149 maxloadav = wd->wd_loadav[i]; 152 we = (struct whoent *)(buf + cc); --we >= wd->wd_we;)
|