| /src/sys/arch/cobalt/stand/boot/ |
| H A D | 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) argument 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 111 wdgetdefaultlabel(struct wd_softc * wd,struct disklabel * lp) argument 152 wdgetdisklabel(struct wd_softc * wd) argument 224 struct wd_softc *wd; local in function:wdopen 273 struct wd_softc *wd; local in function:wdstrategy [all...] |
| H A D | wdc.c | 244 printf("wd%d: error %x\n", chp->compatchan, 256 wdccommandext(struct wd_softc *wd, struct wdc_command *wd_c) argument 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) argument 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) argument 337 wd_c.drive = wd [all...] |
| /src/sys/arch/mmeye/stand/boot/ |
| H A D | 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) argument 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 108 wdgetdefaultlabel(struct wd_softc * wd,struct disklabel * lp) argument 156 wdgetdisklabel(struct wd_softc * wd) argument 200 struct wd_softc *wd; local in function:wdopen 249 struct wd_softc *wd; local in function:wdstrategy [all...] |
| H A D | wdc.c | 281 printf("wd%d: error %x\n", chp->compatchan, 293 wdccommandext(struct wd_softc *wd, struct wdc_command *wd_c) argument 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) argument 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) argument 375 wd_c.bcount = wd->sc_label.d_secsize; 377 if ((wd [all...] |
| H A D | Makefile | 14 SRCS+= com.c scif.c wd.c wdc.c
|
| /src/sys/arch/bebox/stand/boot/ |
| H A D | 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) argument 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 123 wdgetdefaultlabel(struct wd_softc * wd,struct disklabel * lp) argument 164 wdgetdisklabel(struct wd_softc * wd) argument 236 struct wd_softc *wd; local in function:wdopen 288 struct wd_softc *wd; local in function:wdstrategy [all...] |
| H A D | wdc.c | 402 wdc_exec_identify(struct wd_softc *wd, void *data) argument 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) argument 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 [all...] |
| H A D | Makefile | 26 SRCS+= pci.c prf.c sd.c siop.c tgets.c vga.c video.c vreset.c wdc.c wd.c
|
| /src/sys/dev/ata/ |
| H A D | 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 547 struct wd_softc *wd = device_private(self); local in function:wddetach 632 struct wd_softc *wd = local in function:wdstrategy 690 wdstart1(struct wd_softc * wd,struct buf * bp,struct ata_xfer * xfer) argument 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 1247 wdperror(const struct wd_softc * wd,struct ata_xfer * xfer) argument 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 1695 bad144intern(struct wd_softc * wd) argument 1718 wd_set_geometry(struct wd_softc * wd) argument 1747 wd_get_params(struct wd_softc * wd,struct ataparams * params) argument 1792 wd_getcache(struct wd_softc * wd,int * bitsp) argument 1838 wd_setcache(struct wd_softc * wd,int bits) argument 1878 wd_standby(struct wd_softc * wd,int flags) argument 1902 wd_flushcache(struct wd_softc * wd,int flags) argument 1943 wd_trim(struct wd_softc * wd,daddr_t bno,long size) argument 1992 struct wd_softc *wd = device_private(dev); local in function:wd_shutdown 2009 wi_get(struct wd_softc * wd) argument 2196 wd_sysctl_attach(struct wd_softc * wd) argument 2271 wd_sysctl_detach(struct wd_softc * wd) argument 2282 struct wd_softc *wd; local in function:wddebug [all...] |
| H A D | 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))
|
| H A D | 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) ((w [all...] |
| H A D | ld_ataraid.c | 680 struct wd_softc *wd; local in function:ld_ataraid_biodisk 689 wd = device_private(adi->adi_dev); 707 bd->bd_size = (wd->sc_capacity * ld->sc_secsize) - aai->aai_reserved; 712 strnvisx(serial, sizeof(serial), wd->sc_params.atap_serial, 713 sizeof(wd->sc_params.atap_serial), VIS_TRIM|VIS_SAFE|VIS_OCTAL); 714 strnvisx(model, sizeof(model), wd->sc_params.atap_model, 715 sizeof(wd->sc_params.atap_model), VIS_TRIM|VIS_SAFE|VIS_OCTAL); 716 strnvisx(rev, sizeof(rev), wd->sc_params.atap_revision, 717 sizeof(wd->sc_params.atap_revision), VIS_TRIM|VIS_SAFE|VIS_OCTAL);
|
| /src/sys/dev/mca/ |
| H A D | 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 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 A D | 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 A D | 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 A D | 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/ |
| H A D | 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 616 inotify_close_wd(struct inotifyfd * ifd,int wd) argument 671 const int wd = SCARG(uap, wd); local in function:linux_sys_inotify_rm_watch 739 do_kevent_to_inotify(int32_t wd,uint32_t mask,uint32_t cookie,struct inotify_entry * buf,size_t * nbuf,char * name) argument 821 get_inotify_dir_entries(int wd,bool needs_lock) argument 900 handle_write(struct inotifyfd * ifd,int wd,struct inotify_entry * buf,size_t * nbuf) argument 976 kevent_to_inotify(struct inotifyfd * ifd,int wd,enum vtype wtype,uint32_t flags,uint32_t fflags,struct inotify_entry * buf,size_t * nbuf) argument [all...] |
| H A D | linux_inotify.h | 80 int32_t wd; member in struct:linux_inotify_event
|
| /src/usr.bin/btkey/ |
| H A D | 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/ |
| H A D | 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 [all...] |
| /src/usr.bin/rwho/ |
| H A D | 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/ |
| H A D | 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/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | 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/ |
| H A D | 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 ! [all...] |
| /src/tests/dev/clock_subr/ |
| H A D | t_clock_subr.c | 45 #define FILL(ti,ye,mo,da,wd,ho,mi,se) \ 47 .dt_wday = (wd), .dt_hour = (ho), .dt_min = (mi), .dt_sec = (se), } }
|