public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.4 raw devices don't do 64bit offset?
@ 2001-04-16  8:52 k.lichtenwalder
  2001-04-16 11:33 ` Alan Cox
  0 siblings, 1 reply; 5+ messages in thread
From: k.lichtenwalder @ 2001-04-16  8:52 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 747 bytes --]

Hi,
sorry if this was already discussed, but I couldn't find it in the
archives. I'm trying to use xine (the linux dvd player) on
linux-2.4.3-ac3 and can't watch the whole dvd. The reason is that as
soon as the llseek sets a value in the offset_high field for sys_llseek,
I get a EINVAL back from the seek. Is this intentional? Or simply still
(only) a missing feature?

Klasu
-- 
------------------------------------------------------------------------ 
 Klaus Lichtenwalder, Dipl. Inform.,       http://www.webforum.de/Klaus/
 Fax +49-(0)89-91072699                            Lichtenwalder@ACM.org
 NIC: KL2100, KL76-RIPE                     K.Lichtenwalder@Computer.org
 PGP Key fingerprint = 2658 EA97 E1A1 2680 5ECA  0036 80F5 F250 3CF8
C2C7

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 2036 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4 raw devices don't do 64bit offset?
  2001-04-16  8:52 2.4 raw devices don't do 64bit offset? k.lichtenwalder
@ 2001-04-16 11:33 ` Alan Cox
  2001-04-16 12:53   ` k.lichtenwalder
  0 siblings, 1 reply; 5+ messages in thread
From: Alan Cox @ 2001-04-16 11:33 UTC (permalink / raw)
  To: k.lichtenwalder; +Cc: linux-kernel

> sorry if this was already discussed, but I couldn't find it in the
> archives. I'm trying to use xine (the linux dvd player) on
> linux-2.4.3-ac3 and can't watch the whole dvd. The reason is that as
> soon as the llseek sets a value in the offset_high field for sys_llseek,
> I get a EINVAL back from the seek. Is this intentional? Or simply still
> (only) a missing feature?

Did you open the file with open64() ?

Alan


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4 raw devices don't do 64bit offset?
  2001-04-16 11:33 ` Alan Cox
@ 2001-04-16 12:53   ` k.lichtenwalder
  2001-04-16 15:39     ` k.lichtenwalder
  0 siblings, 1 reply; 5+ messages in thread
From: k.lichtenwalder @ 2001-04-16 12:53 UTC (permalink / raw)
  Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1120 bytes --]

Alan Cox wrote:
> 
> > sorry if this was already discussed, but I couldn't find it in the
> > archives. I'm trying to use xine (the linux dvd player) on
> > linux-2.4.3-ac3 and can't watch the whole dvd. The reason is that as
> > soon as the llseek sets a value in the offset_high field for sys_llseek,
> > I get a EINVAL back from the seek. Is this intentional? Or simply still
> > (only) a missing feature?
> 
> Did you open the file with open64() ?

Sorry for being a bit clueless, but it's just the application I was
using. I didn't check that further, because if I don't use the raw
device, it's working fine... So let me check...
No it's using open(), but sets -D_FILE_OFFSET_BITS=64. Looks like this
is not enough for the raw devices?

Klaus
-- 
------------------------------------------------------------------------- 
 Klaus Lichtenwalder, Dipl. Inform.,       http://www.webforum.de/Klaus/
 Fax +49-(0)89-91072699                            Lichtenwalder@ACM.org
 NIC: KL2100, KL76-RIPE                     K.Lichtenwalder@Computer.org
 PGP Key fingerprint = 2658 EA97 E1A1 2680 5ECA  0036 80F5 F250 3CF8
C2C7

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 2036 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4 raw devices don't do 64bit offset?
  2001-04-16 12:53   ` k.lichtenwalder
@ 2001-04-16 15:39     ` k.lichtenwalder
  2001-04-17 13:29       ` k.lichtenwalder
  0 siblings, 1 reply; 5+ messages in thread
From: k.lichtenwalder @ 2001-04-16 15:39 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1231 bytes --]

k.lichtenwalder@computer.org wrote:
> 
> Alan Cox wrote:
> >
> > > sorry if this was already discussed, but I couldn't find it in the
> > > archives. I'm trying to use xine (the linux dvd player) on
> > > linux-2.4.3-ac3 and can't watch the whole dvd. The reason is that as
> > > soon as the llseek sets a value in the offset_high field for sys_llseek,
> > > I get a EINVAL back from the seek. Is this intentional? Or simply still
> > > (only) a missing feature?
> >
> > Did you open the file with open64() ?
> 
> No it's using open(), but sets -D_FILE_OFFSET_BITS=64. Looks like this
> is not enough for the raw devices?

Just to be on the right track I simply forced it to using open64 all
along on this descriptor. It doesn't change anything. And, for the
records, if I delete the raw device so that xine uses the block device,
everything works fine.

Klaus
-- 
------------------------------------------------------------------------ 
 Klaus Lichtenwalder, Dipl. Inform.,       http://www.webforum.de/Klaus/
 Fax +49-(0)89-91072699                            Lichtenwalder@ACM.org
 NIC: KL2100, KL76-RIPE                     K.Lichtenwalder@Computer.org
 PGP Key fingerprint = 2658 EA97 E1A1 2680 5ECA  0036 80F5 F250 3CF8
C2C7

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 2036 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4 raw devices don't do 64bit offset?
  2001-04-16 15:39     ` k.lichtenwalder
@ 2001-04-17 13:29       ` k.lichtenwalder
  0 siblings, 0 replies; 5+ messages in thread
From: k.lichtenwalder @ 2001-04-17 13:29 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1649 bytes --]

Well, I looked a bit deeper into it. The limiting factor is the
s_maxbytes value from the superblock. (If the offset is larger than
s_maxbytes, default_llseek will return EINVAL, what I'm seeing), So,
where does it inherit this value from? My fs is reiserfs, so there's a
4GB limit. But the raw device is bound to the dvd (maj 22, min 64)?

Klaus
k.lichtenwalder@computer.org wrote:
> 
> k.lichtenwalder@computer.org wrote:
> >
> > Alan Cox wrote:
> > >
> > > > sorry if this was already discussed, but I couldn't find it in the
> > > > archives. I'm trying to use xine (the linux dvd player) on
> > > > linux-2.4.3-ac3 and can't watch the whole dvd. The reason is that as
> > > > soon as the llseek sets a value in the offset_high field for sys_llseek,
> > > > I get a EINVAL back from the seek. Is this intentional? Or simply still
> > > > (only) a missing feature?
> > >
> > > Did you open the file with open64() ?
> >
> > No it's using open(), but sets -D_FILE_OFFSET_BITS=64. Looks like this
> > is not enough for the raw devices?
> 
> Just to be on the right track I simply forced it to using open64 all
> along on this descriptor. It doesn't change anything. And, for the
> records, if I delete the raw device so that xine uses the block device,
> everything works fine.

-- 
------------------------------------------------------------------------ 
 Klaus Lichtenwalder, Dipl. Inform.,       http://www.webforum.de/Klaus/
 Fax +49-(0)89-91072699                            Lichtenwalder@ACM.org
 NIC: KL2100, KL76-RIPE                     K.Lichtenwalder@Computer.org
 PGP Key fingerprint = 2658 EA97 E1A1 2680 5ECA  0036 80F5 F250 3CF8
C2C7

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 2036 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-04-17 13:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-04-16  8:52 2.4 raw devices don't do 64bit offset? k.lichtenwalder
2001-04-16 11:33 ` Alan Cox
2001-04-16 12:53   ` k.lichtenwalder
2001-04-16 15:39     ` k.lichtenwalder
2001-04-17 13:29       ` k.lichtenwalder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox