Changes in kernel/generic/src/console/console.c [712c4ba:0496c17] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/console.c
r712c4ba r0496c17 55 55 #define KLOG_PAGES 8 56 56 #define KLOG_LENGTH (KLOG_PAGES * PAGE_SIZE / sizeof(wchar_t)) 57 #define KLOG_LATENCY 8 57 58 58 59 /** Kernel log cyclic buffer */ … … 60 61 61 62 /** Kernel log initialized */ 62 static atomic_t klog_inited = {false};63 static bool klog_inited = false; 63 64 64 65 /** First kernel log characters */ … … 75 76 76 77 /** Kernel log spinlock */ 77 SPINLOCK_STATIC_INITIALIZE_NAME(klog_lock, " klog_lock");78 SPINLOCK_STATIC_INITIALIZE_NAME(klog_lock, "*klog_lock"); 78 79 79 80 /** Physical memory area used for klog buffer */ … … 164 165 sysinfo_set_item_val("klog.faddr", NULL, (sysarg_t) faddr); 165 166 sysinfo_set_item_val("klog.pages", NULL, KLOG_PAGES); 166 167 167 168 event_set_unmask_callback(EVENT_KLOG, klog_update); 168 atomic_set(&klog_inited, true); 169 170 spinlock_lock(&klog_lock); 171 klog_inited = true; 172 spinlock_unlock(&klog_lock); 169 173 } 170 174 … … 261 265 void klog_update(void) 262 266 { 263 if (!atomic_get(&klog_inited))264 return;265 266 267 spinlock_lock(&klog_lock); 267 268 268 if ( klog_uspace > 0) {269 if ((klog_inited) && (klog_uspace > 0)) { 269 270 if (event_notify_3(EVENT_KLOG, true, klog_start, klog_len, 270 271 klog_uspace) == EOK) … … 277 278 void putchar(const wchar_t ch) 278 279 { 279 bool ordy = ((stdout) && (stdout->op->write));280 281 280 spinlock_lock(&klog_lock); 282 281 283 /* Print charaters stored in kernel log */ 284 if (ordy) { 285 while (klog_stored > 0) { 286 wchar_t tmp = klog[(klog_start + klog_len - klog_stored) % KLOG_LENGTH]; 287 klog_stored--; 288 289 /* 290 * We need to give up the spinlock for 291 * the physical operation of writting out 292 * the character. 293 */ 294 spinlock_unlock(&klog_lock); 295 stdout->op->write(stdout, tmp, silent); 296 spinlock_lock(&klog_lock); 297 } 282 if ((klog_stored > 0) && (stdout) && (stdout->op->write)) { 283 /* Print charaters stored in kernel log */ 284 size_t i; 285 for (i = klog_len - klog_stored; i < klog_len; i++) 286 stdout->op->write(stdout, klog[(klog_start + i) % KLOG_LENGTH], silent); 287 klog_stored = 0; 298 288 } 299 289 … … 305 295 klog_start = (klog_start + 1) % KLOG_LENGTH; 306 296 307 if (!ordy) { 308 if (klog_stored < klog_len) 309 klog_stored++; 310 } 311 312 /* The character is stored for uspace */ 313 if (klog_uspace < klog_len) 314 klog_uspace++; 315 316 spinlock_unlock(&klog_lock); 317 318 if (ordy) { 319 /* 320 * Output the character. In this case 321 * it should be no longer buffered. 322 */ 297 if ((stdout) && (stdout->op->write)) 323 298 stdout->op->write(stdout, ch, silent); 324 }else {299 else { 325 300 /* 326 301 * No standard output routine defined yet. … … 332 307 * Note that the early_putc() function might be 333 308 * a no-op on certain hardware configurations. 309 * 334 310 */ 335 311 early_putchar(ch); 336 } 337 338 /* Force notification on newline */ 339 if (ch == '\n') 312 313 if (klog_stored < klog_len) 314 klog_stored++; 315 } 316 317 /* The character is stored for uspace */ 318 if (klog_uspace < klog_len) 319 klog_uspace++; 320 321 /* Check notify uspace to update */ 322 bool update; 323 if ((klog_uspace > KLOG_LATENCY) || (ch == '\n')) 324 update = true; 325 else 326 update = false; 327 328 spinlock_unlock(&klog_lock); 329 330 if (update) 340 331 klog_update(); 341 332 }
Note:
See TracChangeset
for help on using the changeset viewer.