Home
last modified time | relevance | path

Searched refs:RDEV (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/meta-security/recipes-core/initrdscripts/initramfs-framework-dm/
H A Ddmverity46 RDEV="$(realpath /dev/disk/by-partuuid/${bootparam_root#PARTUUID=} 2>/dev/null)"
47 while [ ! -b "${RDEV}" ]; do
55 RDEV="$(realpath /dev/disk/by-id/${bootparam_root#ID=} 2>/dev/null)"
58 RDEV="$(realpath /dev/disk/by-label/${bootparam_root#LABEL=} 2>/dev/null)"
61 RDEV="$(realpath /dev/disk/by-partlabel/${bootparam_root#PARTLABEL=} 2>/dev/null)"
64 RDEV="$(realpath /dev/disk/by-partuuid/${bootparam_root#PARTUUID=} 2>/dev/null)"
67 RDEV="$(realpath /dev/disk/by-path/${bootparam_root#PATH=} 2>/dev/null)"
70 RDEV="$(realpath /dev/disk/by-uuid/${bootparam_root#UUID=} 2>/dev/null)"
73 RDEV="${bootparam_root}"
85 ${RDEV} \
[all …]
/openbmc/linux/drivers/rapidio/
H A Drio_cm.c1954 riocm_debug(RDEV, "(%s)", rio_name(rdev)); in riocm_add_dev()
2002 riocm_debug(RDEV, "(%s)", rio_name(rdev)); in riocm_remove_dev()
2022 riocm_debug(RDEV, "removing peer %s", rio_name(rdev)); in riocm_remove_dev()
2204 riocm_debug(RDEV, "%s drop ch_%d", in riocm_remove_mport()
2224 riocm_debug(RDEV, "ATTN: peer list not empty"); in riocm_remove_mport()
2226 riocm_debug(RDEV, "removing peer %s", rio_name(peer->rdev)); in riocm_remove_mport()
/openbmc/linux/drivers/rapidio/devices/
H A Drio_mport_cdev.c1663 rmcd_debug(RDEV, "net_%d", net->id); in rio_release_net()
1696 rmcd_debug(RDEV, "name:%s ct:0x%x did:0x%x hc:0x%x", dev_info.name, in rio_mport_add_riodev()
1701 rmcd_debug(RDEV, "device %s already exists", dev_info.name); in rio_mport_add_riodev()
1731 rmcd_debug(RDEV, "failed to allocate net object"); in rio_mport_add_riodev()
1742 rmcd_debug(RDEV, "failed to register net, err=%d", err); in rio_mport_add_riodev()
1851 rmcd_debug(RDEV, in rio_mport_del_riodev()
/openbmc/linux/fs/f2fs/
H A Dsuper.c3527 if (RDEV(0).path[0]) { in sanity_check_raw_super()
3528 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments); in sanity_check_raw_super()
3531 while (i < MAX_DEVICES && RDEV(i).path[0]) { in sanity_check_raw_super()
3532 dev_seg_count += le32_to_cpu(RDEV(i).total_segments); in sanity_check_raw_super()
4180 if (!RDEV(0).path[0]) { in f2fs_scan_devices()
4203 else if (!RDEV(i).path[0]) in f2fs_scan_devices()
4208 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN); in f2fs_scan_devices()
4210 le32_to_cpu(RDEV(i).total_segments); in f2fs_scan_devices()
H A Df2fs.h1245 #define RDEV(i) (raw_super->devs[i]) macro