I noticed that very same issue with it not creating the /dev/dvd symlink as well. I just changed the udev rules for the cdrom to create the proper symlinks for me.
Here is my udev rules file.
I named it /etc/udev/rules.d/60-cdrom.rules
Code:
# 60-cdrom.rules
ACTION=="remove", GOTO="cdrom_end"
SUBSYSTEM!="block", GOTO="cdrom_end"
KERNEL!="sr[0-9]*|xvd*", GOTO="cdrom_end"
ENV{DEVTYPE}!="disk", GOTO="cdrom_end"
# unconditionally tag device as CDROM
KERNEL=="sr[0-9]*", ENV{ID_CDROM}="1"
# media eject button pressed
ENV{DISK_EJECT_REQUEST}=="?*", RUN+="cdrom_id --eject-media $devnode", GOTO="cdrom_end"
# import device and media properties and lock tray to
# enable the receiving of media eject button events
IMPORT{program}="cdrom_id --lock-media $devnode"
KERNEL=="sr0", SYMLINK+="cdrom cdrw dvd dvdrw", OPTIONS+="link_priority=-100"
LABEL="cdrom_end"
Edit:
also moving to the the general support category since this is F16/F17 and not a rawhide (currently F18) question.