Symbol: next_device
drivers/base/bus.c
382
while (!error && (dev = next_device(&i)))
drivers/base/bus.c
418
while ((dev = next_device(&i))) {
drivers/base/core.c
4019
while (!error && (child = next_device(&i)))
drivers/base/core.c
4118
while ((child = next_device(&i))) {
drivers/base/driver.c
129
while (!error && (dev = next_device(&i)))
drivers/base/driver.c
163
while ((dev = next_device(&i))) {
drivers/block/drbd/drbd_nl.c
3642
next_device:
drivers/block/drbd/drbd_nl.c
3656
goto next_device;
drivers/block/drbd/drbd_nl.c
3668
goto next_device;
drivers/net/ethernet/ti/tlan.c
572
priv->next_device = tlan_eisa_devices;
drivers/net/ethernet/ti/tlan.c
616
tlan_eisa_devices = priv->next_device;
drivers/net/ethernet/ti/tlan.h
172
struct net_device *next_device;
drivers/tty/synclink_gt.c
1242
info = info->next_device;
drivers/tty/synclink_gt.c
215
struct slgt_info *next_device; /* device list link */
drivers/tty/synclink_gt.c
3417
info->next_device = NULL;
drivers/tty/synclink_gt.c
3432
while(current_dev->next_device)
drivers/tty/synclink_gt.c
3433
current_dev = current_dev->next_device;
drivers/tty/synclink_gt.c
3434
current_dev->next_device = info;
drivers/tty/synclink_gt.c
3633
for (info=slgt_device_list ; info != NULL ; info=info->next_device)
drivers/tty/synclink_gt.c
3643
info = info->next_device;
drivers/tty/synclink_gt.c
3657
info = info->next_device;
drivers/tty/synclink_gt.c
598
info = info->next_device;
fs/btrfs/volumes.c
2190
struct btrfs_device *next_device;
fs/btrfs/volumes.c
2192
list_for_each_entry(next_device, &fs_devs->devices, dev_list) {
fs/btrfs/volumes.c
2193
if (next_device != device &&
fs/btrfs/volumes.c
2194
!test_bit(BTRFS_DEV_STATE_MISSING, &next_device->dev_state)
fs/btrfs/volumes.c
2195
&& next_device->bdev)
fs/btrfs/volumes.c
2196
return next_device;
fs/btrfs/volumes.c
2209
struct btrfs_device *next_device)
fs/btrfs/volumes.c
2213
if (!next_device)
fs/btrfs/volumes.c
2214
next_device = btrfs_find_next_active_device(fs_info->fs_devices,
fs/btrfs/volumes.c
2216
ASSERT(next_device);
fs/btrfs/volumes.c
2220
fs_info->sb->s_bdev = next_device->bdev;
fs/btrfs/volumes.c
2223
fs_info->fs_devices->latest_dev = next_device;