/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 in function:wdopen 273 struct wd_softc *wd; local in function:wdstrategy [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 in function:wdopen 249 struct wd_softc *wd; local in function:wdstrategy [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 in function:wdopen 288 struct wd_softc *wd; local in function:wdstrategy [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 in function:wdattach 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 in function:wddetach 632 struct wd_softc *wd = local in function:wdstrategy 807 struct wd_softc *wd = device_private(dev); local in function:wd_diskstart 879 struct wd_softc *wd = device_private(self); local in function:wdrestart 894 struct wd_softc *wd = device_private(self); local in function:wddone 1056 struct wd_softc *wd = v; local in function:wdbioretry 1073 struct wd_softc *wd = v; local in function:wdbiorequeue 1090 const struct wd_softc * const wd = local in function:wdminphys 1144 struct wd_softc *wd; local in function:wdopen 1183 struct wd_softc *wd = device_private(self); local in function:wd_firstopen 1219 struct wd_softc *wd = device_private(self); local in function:wd_lastclose 1235 struct wd_softc *wd; local in function:wdclose 1289 struct wd_softc *wd = local in function:wdioctl 1506 struct wd_softc *wd = device_private(dev); local in function:wd_discard 1547 struct wd_softc *wd; local in function:wddiscard 1571 struct wd_softc *wd; local in function:wdsize 1595 struct wd_softc *wd; local in function:wddump 1616 struct wd_softc *wd = device_private(dev); local in function:wd_dumpblocks 1992 struct wd_softc *wd = device_private(dev); local in function:wd_shutdown 2282 struct wd_softc *wd; local in function:wddebug [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/sys/dev/mca/ |
ed_mca.c | 294 struct ed_softc *wd; local in function:edmcaopen 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 in function:edmcaclose 579 struct ed_softc *wd; local in function:edmcasize [all...] |
/src/tests/compat/linux/ |
h_inotify_watch_change.c | 44 int fd, wd, targetfd; local in function:_start 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 in function:_start 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 in function:_start 55 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test", 72 REQUIRE(events[i].wd == wd && events[i].cookie == 0
|
/src/sys/compat/linux/common/ |
linux_inotify.c | 422 int wd, i, error = 0; local in function:linux_sys_inotify_add_watch 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 in function:linux_sys_inotify_rm_watch [all...] |
linux_inotify.h | 80 int32_t wd; member in struct:linux_inotify_event
|
/src/usr.bin/btkey/ |
btkey.c | 57 bool cf, cd, lf, ld, rf, rd, wf, wd, nk; local in function:main 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/usr.sbin/rwhod/ |
rwhod.c | 266 struct whod wd; local in function:handleread 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 in function:main 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 in function:main 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;)
|
/src/sys/arch/atari/conf/ |
MILAN.in | 113 wd* at atabus? drive ?
|
SMALL030 | 55 wd* at atabus? drive ?
|
HADES.in | 46 wd* at atabus? drive ?
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
ox810se-wd-mbwe.dts | 3 * wd-mbwe.dtsi - Device tree file for Western Digital My Book World Edition 14 compatible = "wd,mbwe", "oxsemi,ox810se";
|
/src/sys/ufs/ffs/ |
ffs_wapbl.c | 178 struct wapbl_dealloc *wd; local in function:ffs_wapbl_sync_metadata 182 for (wd = fdealloc; wd != NULL; wd = TAILQ_NEXT(wd, wd_entries)) { 188 FFS_DBTOFSB(fs, wd->wd_blkno), wd->wd_len, -1); 208 struct wapbl_dealloc *wd; local in function:ffs_wapbl_abort_sync_metadata 210 for (wd = fdealloc; wd != NULL; wd = TAILQ_NEXT(wd, wd_entries)) [all...] |
/src/sys/arch/acorn32/doc/ |
bootoptions | 58 nowdreset Skip the wd driver drive reset command
|