* Checks if migration is requested by a specific callout cpu. */
| 254 | * Checks if migration is requested by a specific callout cpu. |
| 255 | */ |
| 256 | static int |
| 257 | cc_cce_migrating(struct callout_cpu *cc, int direct) |
| 258 | { |
| 259 | |
| 260 | #ifdef SMP |
| 261 | return (cc_migration_cpu(cc, direct) != CPUBLOCK); |
| 262 | #else |
| 263 | return (0); |
| 264 | #endif |
| 265 | } |
| 266 | |
| 267 | /* |
| 268 | * Kernel low level callwheel initialization |
no outgoing calls
no test coverage detected