Home
last modified time | relevance | path

Searched refs:probe_all (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/package/util-linux/
H A D0002-libblkid-don-t-mark-cache-as-probed-if-sys-not-available.patch41 -static int probe_all(blkid_cache cache, int only_if_new)
42 +static int probe_all(blkid_cache cache, int only_if_new, int update_interval)
58 @@ -548,7 +554,13 @@ static int probe_all(blkid_cache cache, int only_if_new)
77 - ret = probe_all(cache, 0);
82 + ret = probe_all(cache, 0, 1);
90 - ret = probe_all(cache, 1);
91 + ret = probe_all(cache, 1, 0);
117 + int probe_new = 0, probe_all = 0;
134 + if (!dev && !probe_all
138 + probe_all++;
/OK3568_Linux_fs/kernel/drivers/ata/
H A Dpata_legacy.c120 static int probe_all; /* Set to check all ISA port ranges */ variable
1211 if (probe_all || !pci_present) { in legacy_init()
1256 module_param(probe_all, int, 0);