···7677 /* Add the entropy */78 while (nbytes >= 8) {79- *((__u64 *)parm_block) ^= *((__u64 *)buf+i);80 prng_add_entropy();81 i += 8;82 nbytes -= 8;
···7677 /* Add the entropy */78 while (nbytes >= 8) {79+ *((__u64 *)parm_block) ^= *((__u64 *)(buf+i));80 prng_add_entropy();81 i += 8;82 nbytes -= 8;
+1-1
arch/s390/mm/fault.c
···543 struct task_struct *tsk;544 __u16 subcode;545546- kstat_cpu(smp_processor_id()).irqs[EXTINT_PFL]++;547 /*548 * Get the external interruption subcode & pfault549 * initial/completion signal bit. VM stores this ···552 subcode = ext_int_code >> 16;553 if ((subcode & 0xff00) != __SUBCODE_MASK)554 return;0555556 /*557 * Get the token (= address of the task structure of the affected task).
···543 struct task_struct *tsk;544 __u16 subcode;5450546 /*547 * Get the external interruption subcode & pfault548 * initial/completion signal bit. VM stores this ···553 subcode = ext_int_code >> 16;554 if ((subcode & 0xff00) != __SUBCODE_MASK)555 return;556+ kstat_cpu(smp_processor_id()).irqs[EXTINT_PFL]++;557558 /*559 * Get the token (= address of the task structure of the affected task).
+1-1
drivers/s390/block/dasd_diag.c
···239 addr_t ip;240 int rc;241242- kstat_cpu(smp_processor_id()).irqs[EXTINT_DSD]++;243 switch (ext_int_code >> 24) {244 case DASD_DIAG_CODE_31BIT:245 ip = (addr_t) param32;···249 default:250 return;251 }0252 if (!ip) { /* no intparm: unsolicited interrupt */253 DBF_EVENT(DBF_NOTICE, "%s", "caught unsolicited "254 "interrupt");
···239 addr_t ip;240 int rc;2410242 switch (ext_int_code >> 24) {243 case DASD_DIAG_CODE_31BIT:244 ip = (addr_t) param32;···250 default:251 return;252 }253+ kstat_cpu(smp_processor_id()).irqs[EXTINT_DSD]++;254 if (!ip) { /* no intparm: unsolicited interrupt */255 DBF_EVENT(DBF_NOTICE, "%s", "caught unsolicited "256 "interrupt");
+1-1
drivers/s390/kvm/kvm_virtio.c
···381 u16 subcode;382 u32 param;383384- kstat_cpu(smp_processor_id()).irqs[EXTINT_VRT]++;385 subcode = ext_int_code >> 16;386 if ((subcode & 0xff00) != VIRTIO_SUBCODE_64)387 return;0388389 /* The LSB might be overloaded, we have to mask it */390 vq = (struct virtqueue *)(param64 & ~1UL);
···381 u16 subcode;382 u32 param;3830384 subcode = ext_int_code >> 16;385 if ((subcode & 0xff00) != VIRTIO_SUBCODE_64)386 return;387+ kstat_cpu(smp_processor_id()).irqs[EXTINT_VRT]++;388389 /* The LSB might be overloaded, we have to mask it */390 vq = (struct virtqueue *)(param64 & ~1UL);