Changed outdated comments

This commit is contained in:
Thomas Schmitt 2006-09-23 08:29:19 +00:00
parent b3c2e76975
commit 8c0b17b382
2 changed files with 3 additions and 10 deletions

View File

@ -732,10 +732,7 @@ fprintf(stderr,"libburn experimental: burn_drive_find_devno( 0x%lX ) found %s\n"
return 0; return 0;
} }
/* ts A60922 ticket 33 */ /* ts A60923 */
/* Try to find an enumerated address with the same host,channel,target,lun.
If a _no parameter is < 0 then it matches any number.
*/
int burn_drive_convert_scsi_adr(int host_no, int channel_no, int target_no, int burn_drive_convert_scsi_adr(int host_no, int channel_no, int target_no,
int lun_no, char adr[]) int lun_no, char adr[])
{ {

View File

@ -126,9 +126,7 @@ void ata_enumerate(void)
/* ts A60813 /* ts A60813
O_EXCL with block devices is an unpublished feature O_EXCL with block devices is an unpublished feature
of Linux kernels. Possibly introduced 2002. of Linux kernels. Possibly introduced 2002.
It can only be used if libburn stops opening several Mentioned in "The Linux SCSI Generic (sg) HOWTO" */
file descriptor on the same block device.
See comment in sg_grab() */
if(burn_sg_open_o_excl) if(burn_sg_open_o_excl)
open_mode |= O_EXCL; open_mode |= O_EXCL;
/* ts A60813 /* ts A60813
@ -195,9 +193,7 @@ void sg_enumerate(void)
/* ts A60813 /* ts A60813
O_EXCL with block devices is an unpublished feature O_EXCL with block devices is an unpublished feature
of Linux kernels. Possibly introduced 2002. of Linux kernels. Possibly introduced 2002.
It can only be used if libburn stops opening several Mentioned in "The Linux SCSI Generic (sg) HOWTO" */
file descriptor on the same block device.
See comment in sg_grab() */
if(burn_sg_open_o_excl) if(burn_sg_open_o_excl)
open_mode |= O_EXCL; open_mode |= O_EXCL;
/* ts A60813 /* ts A60813