Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 45 bytes for LBU from a SCSA command:

0, 0, 4, 8, 0, 0, 0

I try to derive this into 64 bit uuint LBU in python:

struct.unpack('GG', chr(0)+chr(0)+chr(4)+chr(8)+chr(0)+chr(0)+chr(0))

Is this correct? Maybe not...

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

I don't see any way of interpreting that value as a sane LBA. Is it possible that you're looking at a READ(12), not READ(16)? If that were the case, the bytes would instead be a perfectly sane LBA (0x2c30 = 11312) and length (0x0800 = 2048).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.